错误:调试 Web 服务时超时
在从调用代码单步执行 XML Web service 时,调用有时可能会超时,结果是您无法继续调试。 您可能会看到下面这样的错误信息。
An unhandled exception of type 'System.Net.WebException' occurred in
system.Web.services.dll
Additional information: The operation has timed-out.
解决方案
若要避免此问题,请将 XML Web service 调用的超时值设置为无限大,如下面的示例所示:
Service1 obj = new Service1();
obj.TimeOut = -1; // infinite time out.