Error: Timeout While Debugging Web Services

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Error: Timeout While Debugging Web Services.

When you are stepping into an XML Web service from calling code, the call may sometimes time out, with the result being that you cannot continue debugging. You may see an error message such as this.

An unhandled exception of type 'System.Net.WebException' occurred in   
system.Web.services.dll  
Additional information: The operation has timed-out.  

To avoid this problem, set the timeout value for the call to the XML Web service to infinite, as shown in this example:

Service1 obj = new Service1();  
obj.TimeOut = -1; // infinite time out.  

Debugging Web Applications: Errors and Troubleshooting

Show: