Strange Timeout WebException in HTTP Get using WebClient - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:25:02Zhttp://stackoverflow.com/feeds/question/1043234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043234/strange-timeout-webexception-in-http-get-using-webclient0Strange Timeout WebException in HTTP Get using WebClientfravelgue2009-06-25T10:46:42Z2009-06-29T14:48:12Z
<p>Hi,</p>
<p>I have a multi-thread application (in c#) that it does multiples HTTP <code>GET</code> to uri. Suddenly after of thousand of requests, i get timeout webException but destination server is OK if i test using browser. The code is:</p>
<pre><code>public static string Get(string uri)
{
string responseData = string.Empty;
using (WebClient wc = new WebClient())
{
responseData = wc.DownloadString(uri);
}
return responseData;
}
</code></pre>
<p>I think it is dispose connection issue or similar error. Any body has same problem?</p>
<p>Thx in advance,</p>
<p>PS I have used <code>HttpWebResponse</code> too. But i get same error.</p>
<p>PS OS is Windows 2003 server. So i think is not connection limits.</p>
<p>I have try with this code too and i get same error</p>
<pre><code> public static string Get2(string uri)
{
string responseData = string.Empty;
WebRequest request = WebRequest.Create(uri) as HttpWebRequest;
request.Method = "GET";
request.Timeout = 35000;
using(HttpWebResponse response = (HttpWebResponse)request.GetResponse() as HttpWebResponse)
{
using(Stream dataStream = response.GetResponseStream ())
{
using(StreamReader reader = new StreamReader (dataStream))
{
responseData = reader.ReadToEnd();
}
}
}
return responseData;
}
</code></pre>
http://stackoverflow.com/questions/1043234/strange-timeout-webexception-in-http-get-using-webclient/1043345#10433450Answer by Aditya Sehgal for Strange Timeout WebException in HTTP Get using WebClientAditya Sehgal2009-06-25T11:09:32Z2009-06-25T11:09:32Z<p>Quick question(s)</p>
<ol>
<li>Is the server also your code? </li>
<li>How many are <em>multiple</em> requests? </li>
<li>Try ping -t on your server and
see if any packet loss is reported
from your client machine.</li>
</ol>
<p>Have you thought of maybe the server exhausts all its resources handling your requests and just plain and simple restarts itself. Thats why you get a timeout when you are doing a query but by the time you do the browser <em>ping</em>, it is back up. Just a thought</p>
<p>Since, you mention "thousands of requests", I am more inclined to think a resource crunch on the server rather than a connectivity issue.</p>
http://stackoverflow.com/questions/1043234/strange-timeout-webexception-in-http-get-using-webclient/1043350#10433500Answer by Kev for Strange Timeout WebException in HTTP Get using WebClientKev2009-06-25T11:10:28Z2009-06-25T11:10:28Z<p>This could be caused by any number of reasons including:</p>
<ul>
<li><p>Brief transient loss of connectivity
between your application and the
remote web server</p></li>
<li><p>The remote server is possibly not responding in time due to load</p></li>
</ul>
<p>I suggest setting a longer timeout on the request but you'd need to use <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx" rel="nofollow"><code>WebRequest</code></a> instead because there is no way to set a timeout on <code>WebClient</code>.</p>
http://stackoverflow.com/questions/1043234/strange-timeout-webexception-in-http-get-using-webclient/1052572#10525720Answer by Gaurav for Strange Timeout WebException in HTTP Get using WebClientGaurav2009-06-27T10:27:07Z2009-06-27T10:27:07Z<p>Having faced this myself what I found to work is to try your get request a few more times after a short Wait() on that thread for say 5 seconds and if it doesn't work it is best to leave the server alone for some time. :-)</p>
http://stackoverflow.com/questions/1043234/strange-timeout-webexception-in-http-get-using-webclient/1058747#10587471Answer by fravelgue for Strange Timeout WebException in HTTP Get using WebClientfravelgue2009-06-29T14:48:12Z2009-06-29T14:48:12Z<p>Some links with <a href="http://stackoverflow.com/questions/388908/improving-performance-of-multithreaded-httpwebrequests-in-net">same</a> <a href="http://www.cnblogs.com/anders06/archive/2007/01/23/627698.html" rel="nofollow">problem</a>.</p>