Web Service Connection problems Dot .Net 1.1
Issue: The underlying connection was closed: An unexpected error occurred on a receive. Web Service Timeout problems occurring on Client and Server sides. Server => Web Service Host Client => Web Service Caller * The underlying connection was closed: An unexpected error occurred on a receive. This is a client side problem. And it can be solved by avoiding HTTP KeepAlives - with Dot Net 1.1 For other issues we need to increase the timeout values at various levels. * For Server side, adjust the proper connection timeout value in the IIS web server properties. * if the request takes too long on the server, the web server could time it out. * Also adjust this value: in the config file (web/app .config) (Read more on msdn) The default is value 110, a little less than 2 minutes. See documentation for detail. For Client Side (Timeout: 'give up on the server if you don't get a reply back with a certain time'.); To specify the amount of time to wait for the request to comp...