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

We have IIS 7.5 running locally on dev machines - win7. We're experiencing occasional hangs on IIS requests - both for web applications, and on asmx services (two completely different solutions. There could be others, but this is what we have for now).

Troubleshooting (done on asmx service, SOAP, binary serialization):

  1. The command prompt appcmd.exe list request shows stage:SendResponse for about 50secs, and after that no active requests while the client is still waiting for the response.

  2. Fiddler shows two different errors:

    1. That the request was sent, and there was header with response of 200 (success), Content-Length: 188460, but no response body.
    2. That the request was sent, and there was header with response of 200 (success), Content-Length: 188460, but (after timeout expired) in had received in total only 32535 bytes . When invalid length returned, it's always the same number of bytes(!).
  3. The Failed request tracing. I've turned on every response status tracking, and the last one - status 200 - is there. The response buffer (GENERAL_RESPONSE_ENTITY_BUFFER) is there and ready (although, displayed truncated to about 8k). The weirdest thing (and the only clue) is the message near the end of the "compact view" display of that request:

    GENERAL_FLUSH_RESPONSE_END
    
    BytesSent="131072", ErrorCode="The specified network name is no longer available.
    (0x80070040)" 
    
    GENERAL_REQUEST_END
    
    BytesSent="131072", BytesReceived="2078", HttpStatus="200", HttpSubStatus="0" 
    

The service is referenced as localhost or computer name (for fiddler debugging), but the error is constant. We have ISA server & its Forefront, but that shouldn't be relevant if we're running localhost.

More info:

  • As I said before - the error is not constant, but occasional. It occurs in about 1 out of 5 requests.
  • It does not occur when we're targeting each others services, ie, it happens only when client is targeting the service on the same computer it's running on (either by localproxy, or computer name)
  • We've been debugging the same piece of code, and it seems that it fails on the same request every time, but it occurs throughout the application use, so that method is not the only one. When it works, it executes in a range of milliseconds.
  • The request it fails on has nothing specific in it's header or body (esp because the body is encoded binary), and neither request or response are the largest or smallest one in size.
  • The error occurs on all of our dev machines running win7+IIS 7.5.
  • The application pool is dedicated - tried both ASPNET 2.0 & 4.0, the error is the same
  • The pool is running with "Enable 32bit applications" both to true or false. Identity is of Network Service.
  • We have Nod32 Antivirus v4 turned on, Windows Firewall is turned off - tried turning off the antivirus, didn't help either.

If you have any clue as to what to try to debug this further, I'd appreciate it...

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.