I have hosted my WCF in a windows service with the following binding configuration. I set the receive timeout for 2 hours 10 mins (just for testing).
<wsHttpBinding>
<binding name="binding1" transactionFlow="true" receiveTimeout="02:10:00">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="32768" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security>
<transport clientCredentialType="None" />
</security>
</binding>
</wsHttpBinding>
However, after every 20 minutes idle time, the first request being fired takes 5 to 10 seconds extra than the subsequent requests. I have also set the usedefaultwebproxy settings of client side binding configurations to false.
Could someone help me, where the idle time out is managed in WCF.