Http transport channel in WCF uses persistent HTTP connections by default. How to control keep alive timeout for those connections? Default value is 100s. I found that value by monitoring application in Procmon. I haven't found any setting in http transport binding element which configures this timeout. Is there any .NET class which can control that timeout?
|
Take a look here: There is a detailed discussion of manipulating the keep alive property during an http connection. |
|||||||
|
|
It sounds to me like you're wanting to adjust the If it is, try creating a Message Inspector. This should allow you to modify the HTTP headers for each message that gets sent out:
|
|||||||||
|
|
From this answer, and what I can read here, it looks like you want to create a custom http binding, and set the From the MSDN article:
|
|||||||
|
|
How about this? Seems it may be a function of your IIS Server and nothing to do with the WCF service? I know this link applies to IIS6, but maybe it serves as a foundation to something similar in IIS7? http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/73566f83-c257-4941-8ed8-7ae45b2e7985.mspx?mfr=true |
|||||
|