My config setting is as below.
<bindings>
<basicHttpBinding>
<!-- This binding is used when connecting to services secured using SSL (e.g. when accessible over internet/WAN) -->
<binding name="SecuredBasicHttpBinding" closeTimeout="10675199.02:48:05.4775807"
openTimeout="10675199.02:48:05.4775807" receiveTimeout="10675199.02:48:05.4775807" sendTimeout="10675199.02:48:05.4775807"
maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas maxStringContentLength="16384" />
<security mode="Transport">
<transport clientCredentialType="Basic" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
I want to set maximum value for closetimeout,opentimeout..etc.. I got this value 10675199.02:48:05.4775807 from below url.but it didnt work.
How can I set the receiveTimeout and sendTimeout to infinity with this WCF contact?
what is the max value which can be set for timeout?