Connections_Refused IIS 6.0

  • Thread starter Thread starter zabutimaxim
  • Start date Start date
Z

zabutimaxim

Hi,

I have a problem with some web method in my webservice.After 12 hours
under stress the IIS stop responding and in httperr.log I see
Connections_Refused. I already have read that it is because kernel
NonPagedPool is low then limit, which is 20MB.
The question is what can cause this to happen? Is this because memory
leak in my web service?
I need suggestion from someone who already had this problem and found
some way to fix this?

Thanks.
 
a lack of any resource can cause this (memory, nonpagedpool,
connections, etc). you need to monitor the perf counters to tell which
resource your code is using up. once you know what you are looking for,
you can use the debugger to track the usage.

-- bruce (sqlwork.com)
 
Back
Top