I am struggling to achieve a requirement from the client. I have a web service which in turn invokes client's webservice. Our service POST a request to the client service using UploadString() property of webclient.Here I have frequent requests to the client service,so I would like to keep the connection alive.I came to know that in HTTP 1.1 there is a feature called "KeepAlive" which allows persistent connection.My question is, is it possible to configure the timeout property of this keepalive via c# code?
Appreciate your help:)