I have recently been developing a new WCF service based on net tcp bindings and using reliable sessions.
During the tests made with this service, I had a strange behavior with the inactivityTimeout of the binding.
On the server, using a Windows service :
- If the
inactivityTimeoutis set to 10 hours, the service seems to not respond - If the
inactivityTimeoutis set to 10 seconds, the service is working properly
On the server, using a console hosted service, the service works properly with both values of inactivityTimout.
On my local computer, the service works properly with Windows Service and console host and both values of inactivityTimeout.
The server is running Windows 2008 R2 and my workstation is running Windows XP SP3.
Is there a reason that the WCF service seems to not respond with a large inactivityTimeout on the server when hosted in a Windows service ?