asp.net 2.0

How to manage the ASP.NET web service output caching in C#

Web services which use output caching provide identical response, until the cache information expires, when requests are identical. In this case you can increase performance of your site, even if you store a response only for w few seconds.

You should use output caching only for straightforward information retrieval or data-processing functions. You should not …

Learn more

How to refine a web service in ASP.NET

You can refine a web service, by using features provided by the WebMethod attribute. You can use the WebMethod attribute to the methods you want to expose as a part of a web service and you can use the Description property to attach a description. The next table lists several additional WebMethod attribute properties, you can …

Learn more

How to use timeout property of the proxy class in VB.NET

In some cases for your web-page client, which consume a web service, you need to specify the maximum amount of time it has to wait. The article How to create an ASP.NET web-page client for a web service in VB.NET does not cover this area. By default the timeout is 100,000 milliseconds (10 seconds).

You …

Learn more

How to use timeout property of the proxy class in C#

In some cases for your web-page client, which consume a web service, you need to specify the maximum amount of time it has to wait. The article How to create an ASP.NET web-page client for a web service in C# does not cover this area. By default the timeout is 100,000 milliseconds (10 seconds).

You …

Learn more

How the proxy class works in ASP.NET

Two articles How to create the proxy class with wsdl command-line tool in ASP.NET and How to create the proxy class with Visual Studio in ASP.NET describe as simple tasks how you can generate a proxy class used to consume a web service. This article gives more information about how the proxy class works.

The proxy class …

Learn more

How to create the proxy class with Visual Studio in ASP.NET

You need to create the Proxy class when you want to consume a web service as described in the article How to consume a web service in ASP.NET. The first option is described in the article How to create the proxy class with wsdl command-line tool in ASP.NET. As a second option, you can create the …

Learn more

How to consume a web service in ASP.NET

The technology .NET provides a solution with a dedicated component called a proxy class which wraps the calls to the web service’s methods. The class generates the correct SOAP message format and manages the transmission of the messages over the network by using HTTP. When it receives the response message, it converts the result back to …

Learn more