Archived Months
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > asp.net webservices > september 2004 > threads for september 1 - 7, 2004

Filter by week: 1 2 3 4 5

Install Web Service Into Production
Posted by Matt at 9/7/2004 5:47:00 PM
How do I install my web service into my production web server so that it is not available publicly but will still be available for my local web pages that use it? My references are for localhost but I don't believe this will work once installed. I have never moved a web service or asp.net web ...more >>

Please Advice. What´s the right path? plain file vs xml file
Posted by Jorge Luzarraga Castro at 9/7/2004 4:15:43 PM
Hello Everybody! I´d like that you give me some advice on what the right approach to import some data from one system to another is. I know that a webservice fits perfectly to intercommunicate two different systems but it is said that unfortunately it is slower than to load a plain txt file v...more >>

Web Services on Win 2003 to SQL Server on Win 2000
Posted by petes NO[at]SPAM knorrassociates.com at 9/7/2004 2:52:55 PM
I'm having serious performance issues in connecting from a Win 2003 Server machine to a SQL Server database on a different Win 2000 Server machine. There is nothing other than our application running on these machine. They are connected via 100mb ethernet. I can ping with sub-1ms response times....more >>

ConfigurationSettings Error
Posted by William Gower at 9/7/2004 11:33:41 AM
In my WebService I have a method called Download() that creates a dataset. To get my connection string which is located in my web.config file I call the following imports System.Web.HttpServerUtility Dim strConnectionString As String strConnectionString = ConfigurationSettings.AppSettings(...more >>

still having problem return arraylist of objects in webservice....
Posted by Milsnips at 9/6/2004 12:44:10 PM
hi there, i have a webservice which my function calls a database( eg. customer table), what i have is my own Customer class, and i want to return an array of my "Customer" objects. here is my code i use (c.GetList returns an arraylist of customer objects from the database: <WebMethod()...more >>

any clickable control
Posted by Corno at 9/5/2004 6:09:04 PM
Hi all, Is there a webcontrol or an htmlcontrol available that does a postback on a onclick but is more generic that a button? For example I would like to be able to postback when I click on a div, or on a table cell. I found out that I cannot use the HTMLGenericControl as it does not have a ...more >>

am right in web services?
Posted by Raghu Raman at 9/5/2004 7:54:05 AM
Hi , ramesh. i have a doubt in web services. just tell me the way am using the web services is right? since am involved in a big project , i have written a module in c# which has classes & inheritance. on it it establishes the connection, command , and a dataset. for ex, in any web pag...more >>

Form field error messages
Posted by Shabam at 9/5/2004 3:25:24 AM
I know that dotnet allows for form field validation. However I'm looking to customize the error message display and am wondering if it's possible to do what I need. Example: Suppose in a form there is a "Name" field (required). The user leaves it blank and submits the form. I need to rel...more >>



IIS 6.0 ASP.NET Process Identity and ODBC
Posted by Aras Kucinskas at 9/3/2004 4:37:16 PM
Hi, My WS ASP.NET application runs on IIS 6.0 and should connect to FoxPro DB on file server over OLE DB ODBC connection. Special user is created on file server for this application. I cannot find the right solution how to change Process Identity. App impersonates some user identity <ide...more >>

Result xsi:type
Posted by Thor W Hammer at 9/3/2004 4:26:55 PM
I'm using .NET Webservices and have a WebMethod that returns a integer. In the returning XML the returnvalue comes like this: <MyMethodResult>123</MyMethodResult> Is it possible to have .NET creating the result look like this instead? <MyMethodResult xsi:type="integer">123</MyMethodResult> ...more >>

duplicated soap response
Posted by David Bartosik MSFT MVP at 9/3/2004 10:50:09 AM
My client wanted the "any" wildcard in the WSDL replaced with the data schema, just like in the SOAP. To acomplish that I created a class (called Play) of the data fields. Then in the web method I used XmlElement as such: [return: XmlElement(typeof(Play[]))] public XmlNode RandomNowPlayingXml(...more >>

Ampersands in the result, xmldatadocument
Posted by David Bartosik MSFT MVP at 9/3/2004 10:41:22 AM
I am returning an XMLDataDocument in my service since my client cannot consume the dataset. The resulting XML does not replace ampersand characters in the string values with &amp; - for example - <field>David & David</field> The clients parser chokes on that. Is there something I can do wi...more >>

Send Basic HTTP authentication credential in the first HTTP request
Posted by Nacho Nachev at 9/2/2004 3:30:17 PM
Hello, How can I make the web service proxy class send basic authentication information in the HTTP header of the first request? My authentication code is here: NetworkCredential crd = new NetworkCredential("user1", "welcome1"); m_echostringsvc.Credentials = crd; m_echostringsvc.PreAuthe...more >>

need help returning webservice data in arraylist...
Posted by Milsnips at 9/2/2004 3:00:33 PM
hi there, i have a webservice which my function calls a database( eg. customer table), what i have is my own Customer class, and i want to return an array of my "Customer" objects. here is my code i use (c.GetList returns an arraylist of customer objects from the database: <WebMethod()> ...more >>

trying to use custom wsdl - .Net 1.1
Posted by David Bartosik MS MVP at 9/2/2004 11:54:00 AM
Everything I read says to use the following in the web.config system web section <webServices> <protocols> <remove name="Documentation" /> </protocols> </webServices> in order to implement a custom WSDL file. Yet using this in the web.config file breaks the asmx page with E...more >>

Why generate minOccurs='0' while the parameter is not optional?
Posted by liqiang_chen NO[at]SPAM hotmail.com at 9/1/2004 6:25:47 PM
Hi, I am writing my first web service, here is the signiture of my webmethod in C#: [WebMethod] public string Request( string productType, double version, out string confirmationID ) And here is part of the generated WSDL file: - <s:element name="Request"> - <s:complexType> - <s:...more >>

System.Net.WebException Request Entity Too Large (not running IIS)
Posted by x1x82 NO[at]SPAM hotmail.com at 9/1/2004 3:54:17 PM
When my .NET program makes a Web Service call I get this response... System.Net.WebException: The request failed with HTTP status 413: Request Entity Too Large 1. The server the Web Service is running on is *not* MS IIS 2. The problem does *not* occur if my .NET program and non-IIS server ...more >>


DevelopmentNow Blog