EDN Admin
Well-known member
Hi<br/> Any one please help me<br/> <br/> When calling web Service from windows applications more than once i got the followin exception : The request channel timed out attempting to send after 00:01:00. Increase the timeout value passed to the call to request or increase the sendtimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout<br/> <br/> i am using the following xml code for app.config<br/> <br/> <br/> <br/> <system.serviceModel><br/> <bindings><br/> <basicHttpBinding><br/> <binding name="Transcription_WebServiceSoap" closeTimeout="00:01:00"<br/> openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"<br/> allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"<br/> maxBufferSize="2000000" maxBufferPoolSize="2000000" maxReceivedMessageSize="2000000"<br/> messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"<br/> useDefaultWebProxy="true <br/> <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"<br/> maxBytesPerRead="4096" maxNameTableCharCount="16384" /><br/> <security mode="None <br/> <transport clientCredentialType="None" proxyCredentialType="None"<br/> realm="" /><br/> <message clientCredentialType="UserName" algorithmSuite="Default" /><br/> </security><br/> </binding><br/> <binding name="CustomerWebServiceSoap" closeTimeout="00:01:00"<br/> openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"<br/> allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"<br/> maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"<br/> messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"<br/> useDefaultWebProxy="true <br/> <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"<br/> maxBytesPerRead="4096" maxNameTableCharCount="16384" /><br/> <security mode="None <br/> <transport clientCredentialType="None" proxyCredentialType="None"<br/> realm="" /><br/> <message clientCredentialType="UserName" algorithmSuite="Default" /><br/> </security><br/> </binding><br/> </basicHttpBinding><br/> </bindings><br/> <client><br/> <endpoint address="http://www.something.com/CustomerService/WebService.asmx"<br/> binding="basicHttpBinding" bindingConfiguration="Transcription_WebServiceSoap"<br/> contract="Transcription_WebService.Transcription_WebServiceSoap"<br/> name="Transcription_WebServiceSoap" /><br/> <endpoint address="http://www.something.com/CustomerService/WebService.asmx"<br/> binding="basicHttpBinding" bindingConfiguration="CustomerWebServiceSoap"<br/> contract="CustomerWebService.CustomerWebServiceSoap" name="CustomerWebServiceSoap" /><br/> </client><br/> </system.serviceModel><br/>
View the full article
View the full article