Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using an open source library to connect to my webserver. I was concerned that the webserver was going extremely slow and then I tried doing a simple test in Ruby and I got these results

Ruby program: 2.11seconds for 10 HTTP GETs

Ruby program: 18.13seconds for 100 HTTP GETs

C# library: 20.81seconds for 10 HTTP GETs

C# library: 36847.46seconds for 100 HTTP GETs

I have profiled and found the problem to be this function:

private HttpWebResponse GetRawResponse(HttpWebRequest request) {
  HttpWebResponse raw = null;
  try {
    raw = (HttpWebResponse)request.GetResponse(); //This line!
  }
  catch (WebException ex) {
    if (ex.Response is HttpWebResponse) {
      raw = ex.Response as HttpWebResponse;
    }
  }
  return raw;
}

The marked line is takes over 1 second to complete by itself while the ruby program making 1 request takes .3 seconds. I am also doing all of these tests on 127.0.0.1, so network bandwidth is not an issue.

What could be causing this huge slow down?

UPDATE

Check out the changed benchmark results. I actually tested with 10 GETs and not 100, I updated the results.

share|improve this question
Out of curiosity, are you using the same HttpWebRequest object for all GETs? I think the slowdown is just the initial handshake. Try reusing the same HttpWebRequest object. – BFree Mar 25 '10 at 22:10
When you profile, do you exclude the first call? I have sometimes noticed the FireWall (or something) can slow down the 1st call by seconds. (Alt: measure more than 100 requests, does the ratio stay the same?) – Henk Holterman Mar 25 '10 at 22:13
I believe that it is creating a new request object on each call.. What kind of "handshake" must be done for HTTP though? its a fairly simplistic protocol – Earlz Mar 25 '10 at 22:14
Also, my ruby test program creates a new HTTP object each time as well, so apparently HTTP doesn't have to be slow to create new objects each time. – Earlz Mar 25 '10 at 22:16
1  
@Henk, I just tried doing 500 requests and gave up after 5 minutes... – Earlz Mar 25 '10 at 22:24
show 3 more comments

6 Answers

up vote 43 down vote accepted

What I have found to be the main culprit with slow web requests is the proxy property. If you set this property to null before you call the GetResponse method the query will skip the proxy autodetect step:

request.Proxy = null;
using (var response = (HttpWebResponse)request.GetResposne())
{
}

The proxy autodetect was taking up to 7 seconds to query before returning the response. It is a little annoying that this property is set on by default for the HttpWebRequest object.

share|improve this answer
1  
James, you rock. I'd have found this eventually via Wireshark but literally seconds after reading this post our WebDAV performance was over one hundred faster. I suspect our Sharpoint server has the same issue – Paul Lockwood Feb 14 '12 at 21:15
thanks. this helped a ton! – Brazzle Apr 10 '12 at 17:07
many thanks this is the real answer. – AFgone Aug 15 '12 at 3:29
I'm having the same issue (response taking more or less 1 second) but setting WebRequest.DefaultWebProxy = null doesn't solve my issue. Any other idea? – Cristiano Ghersi Mar 10 at 20:03
Sorry for bumping the thread up, but what happens if the address you try to access is only available through the default proxy ? – Florian F. Mar 20 at 8:59

It may have to do with the fact that you are opening several connections at once. By default the Maximum amount of open HTTP connections is set to two. Try adding this to your .config file and see if it helps:

<system.net>
  .......
  <connectionManagement>
    <add address="*" maxconnection="20"/>
  </connectionManagement>
</system.net>
share|improve this answer

Use a computer other than localhost, then use WireShark to see what's really going over the wire.

Like others have said, it can be a number of things. Looking at things on the TCP level should give a clear picture.

share|improve this answer

I don't know how exactly I've reach to this workaround, I didn't have time to do some research yet, so it's up to you guys. There's a parameter and I've used it like this (at the constructor of my class, before instantiating the HTTPWebRequest object):

System.Net.ServicePointManager.Expect100Continue = false;

I don't know why exactly but now my calls look quite faster.

share|improve this answer

I was having a similar issue with a VB.Net MVC project.
Locally on my pc (Windows 7) it was taking under 1 second to hit the page requests, but on the server (Windows Server 2008 R2) it was taking 20+ seconds for each page request.

I tried a combination of setting the proxy to null

  System.Net.WebRequest.DefaultWebProxy = Nothing
  request.Proxy = System.Net.WebRequest.DefaultWebProxy

And changing the config file by adding

 <system.net>
   .......
   <connectionManagement>
     <add address="*" maxconnection="20"/>
   </connectionManagement>
 </system.net>

This still did not reduce the slow page request times on the server. In the end the solution was to uncheck the “Automatically detect settings” option in the IE options on the server itself. (Under Tools -> Internet Options select the Connections tab. Press the LAN Settings button)

Immediately after I unchecked this browser option on the server all the page request times dropped from 20+ seconds to under 1 second.

share|improve this answer

Try switching to sockets HttpWebRequest is a layer of abstraction over sockets. To get better performance, go down a layer of abstraction:

http://www.codeproject.com/KB/IP/Crawler.aspx#WebRequest

share|improve this answer
Well, I would have to modify a big amount of code in the library to do that, which I do not wish to do.. is there anything else I can look for? – Earlz Mar 25 '10 at 22:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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