异常信息:请求通道在等待 00:00:58.9616639 以后答复时超时。增加传递给请求调用的超时值,或者增加绑定上的 SendTimeout 值。分配给此操作的时间可能是更长超时的一部分。
开发背景:用Winform调用WebService 方法,报了该异常。(该方法是涉及到大数据量的操作)
开发环境:Visual studio2010, Win8
解决方法:在App.config配置文件里:设置这些参数,延长连接时间,
closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
<system.serviceModel> <bindings> <basicHttpBinding> <binding name="CommonWebServiceSoap" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"> <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /> <security mode="None"> <transport clientCredentialType="None" proxyCredentialType="None" realm="" /> <message clientCredentialType="UserName" algorithmSuite="Default" /> </security> </binding> </basicHttpBinding> </bindings> <client> <endpoint address="http://192.168.100.96/fjUpDate/CommonWebService.asmx" binding="basicHttpBinding" bindingConfiguration="CommonWebServiceSoap" contract="HTTP_UP.CommonWebServiceSoap" name="CommonWebServiceSoap" /> </client> </system.serviceModel> </configuration>