When writing the below my code locks up on GetResponse. Why?

        try
        {
            WebRequest myWebRequest = WebRequest.Create(strURL);
            WebResponse myWebResponse = myWebRequest.GetResponse();
            //more code here
link|improve this question

74% accept rate
No problem when trying this on localhost whats the URI? – rdkleine Sep 6 '09 at 20:28
There's not enough information to diagnose this. Does it lock up for you regardless of which URL you use, is it only for one URL, does it happen consistently, what happens when you try to access the URL from your browser? – Pete OHanlon Sep 6 '09 at 20:31
feedback

1 Answer

up vote 13 down vote accepted

This usually happens if you've made several requests to the same host, and not disposed of the WebResponse.

The default connection management settings only allow 2 (or maybe 4, I can't remember) open connections to the same host at a time. If you really need to change this, use the <connectionManagement> app.config element - but usually you'll be fine just disposing of WebResponse:

try
{
    WebRequest myWebRequest = WebRequest.Create(strURL);
    using (WebResponse myWebResponse = myWebRequest.GetResponse())
    {
        //more code here
link|improve this answer
I <3 Jon Skeet that fixed the problem completely. Again i would have never to check for dispose. Thanks. – acidzombie24 Sep 6 '09 at 21:28
That didnt help for me. I tried the "using" approach, as well as doing a Close on the response inside the using... but still get the same problem. – Ted Dec 4 '11 at 19:21
My question on SO: stackoverflow.com/questions/8377185/… – Ted Dec 4 '11 at 19:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.