473,513 Members | 2,668 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Server too busy error

Hi.

I have an asp.net application running under Windows 2003 Server, IIS 6, for
seven months. Today, suddenly, the application raised an error entitled
"Server too busy". Searching the event logs I found an entry for:

Event ID: 2262
Description: ISAPI
'C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet _isapi.dll' reported
itself as unhealthy for the following reason: 'Deadlock detected'.

What kind of deadlock can it be?

I followed the steps from the MS article
http://support.microsoft.com/default...b;en-us;828222 , but it does
not clarified my doubts. I read the other links pointed by the article but
what exactly does the OrphanWorkerProcess parameter do for me?

TIA,
Erik Cruz
Nov 22 '05 #1
4 3555
If you're doing any multithreading, that would be the #1 suspect.
Also, you might check to be sure you're calling Application.Lock() before
setting any application variables and Application.Unlock() afterward.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Erik Cruz" <er******************@antares.com.br> wrote in message
news:el**************@TK2MSFTNGP14.phx.gbl...
Hi.

I have an asp.net application running under Windows 2003 Server, IIS 6,
for seven months. Today, suddenly, the application raised an error
entitled "Server too busy". Searching the event logs I found an entry for:

Event ID: 2262
Description: ISAPI
'C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet _isapi.dll' reported
itself as unhealthy for the following reason: 'Deadlock detected'.

What kind of deadlock can it be?

I followed the steps from the MS article
http://support.microsoft.com/default...b;en-us;828222 , but it
does not clarified my doubts. I read the other links pointed by the
article but what exactly does the OrphanWorkerProcess parameter do for me?

TIA,
Erik Cruz

Nov 22 '05 #2
OrphanWorkerProcess tells IIS not to shutdown the worker process. IIS
will leave the process running but won't send the worker process any
more requests to execute. This setting lets the process stay in memory
so you can jump in with tools like a debugger and see where the
deadlock is occuring.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Fri, 18 Feb 2005 00:35:48 -0300, "Erik Cruz"
<er******************@antares.com.br> wrote:
Hi.

I have an asp.net application running under Windows 2003 Server, IIS 6, for
seven months. Today, suddenly, the application raised an error entitled
"Server too busy". Searching the event logs I found an entry for:

Event ID: 2262
Description: ISAPI
'C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspne t_isapi.dll' reported
itself as unhealthy for the following reason: 'Deadlock detected'.

What kind of deadlock can it be?

I followed the steps from the MS article
http://support.microsoft.com/default...b;en-us;828222 , but it does
not clarified my doubts. I read the other links pointed by the article but
what exactly does the OrphanWorkerProcess parameter do for me?

TIA,
Erik Cruz


Nov 22 '05 #3
Hi Scott.

Thanks for the information.

The article shows how to enable OrphanWorkerProcess. Is it enough to set it
to False in order to disable it? Will the other parameters be reset
automatically or do I need to change the values manually?

TIA,
Erik Cruz
"Scott Allen" <sc***@nospam.odetocode.com> wrote in message
news:u4********************************@4ax.com...
OrphanWorkerProcess tells IIS not to shutdown the worker process. IIS
will leave the process running but won't send the worker process any
more requests to execute. This setting lets the process stay in memory
so you can jump in with tools like a debugger and see where the
deadlock is occuring.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Fri, 18 Feb 2005 00:35:48 -0300, "Erik Cruz"
<er******************@antares.com.br> wrote:
Hi.

I have an asp.net application running under Windows 2003 Server, IIS 6,
for
seven months. Today, suddenly, the application raised an error entitled
"Server too busy". Searching the event logs I found an entry for:

Event ID: 2262
Description: ISAPI
'C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspn et_isapi.dll' reported
itself as unhealthy for the following reason: 'Deadlock detected'.

What kind of deadlock can it be?

I followed the steps from the MS article
http://support.microsoft.com/default...b;en-us;828222 , but it
does
not clarified my doubts. I read the other links pointed by the article but
what exactly does the OrphanWorkerProcess parameter do for me?

TIA,
Erik Cruz

Nov 22 '05 #4
Hi Erik:

Yes, if you set to false the other parameters / actions will not be
taken.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Sun, 6 Mar 2005 23:51:43 -0300, "Erik Cruz"
<er******************@antares.com.br> wrote:
Hi Scott.

Thanks for the information.

The article shows how to enable OrphanWorkerProcess. Is it enough to set it
to False in order to disable it? Will the other parameters be reset
automatically or do I need to change the values manually?

TIA,
Erik Cruz


Nov 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2287
by: Hasan Ceylan | last post by:
Hi Everyone, Recently we have started to have performance problems on our server which has the following configuration: Win 2K IIS 5 php The traffic to our web site is on normal time 300...
0
2094
by: Phil | last post by:
Hi All, I've recently been working on a site which is vital that it's up all week this week as a lot of potential clients are going to be viewing it. Yesterday for between 30 mins and 2 hours...
1
4777
by: Bernd Bugomir | last post by:
Hi out there, our Webserver stops working with 'HTTP Error 500-13 - Server too busy'. The Server has at this time over 3000 connections, but the Server isn't busy at all. (The IIS runs with...
6
2062
by: Sriram | last post by:
Hi SQL Server Experts, I really need some help ASAP.I thank you in advance. We have an ASP/MS SQL Server Shopping cart application,developed by an independent developer.We really have a...
3
5199
by: Raymond | last post by:
Dear all, We ran into very strange situation recently with our ASP.Net applications running on Windows 2003 servers. After running for a couple of days, the .Net application begin to reject...
0
1621
by: aartinawani | last post by:
Hi I have an asp.net application running under Windows 2003 Server, IIS 6, for 2 years. Today, suddenly, the site went down at 3:38 pm and the application raised an error entitled "Server too...
0
1417
by: roninkaiser | last post by:
Good Evening, I've a Dts in my sql server 2000 that contain 8 packages. If I fire the dts from local packages all ok If i try to fire the package step by stem I've this error: server busy-this...
2
9057
by: rezapasha | last post by:
Hello, we have a website in ASP , the pages connected to .mdb access database by ODBC there is a big traffic on this site, so after 9-10 hour the server show this error to visitors : HTTP Error...
7
5041
by: DC | last post by:
Hi, there is a 500;13 page one can configure in the website properties, but ..Net Framework 1.1 also delivers the "server too busy" message sometimes and the IIS custom error page does not seem...
4
11011
by: Mr Gray | last post by:
Hi Guys, My requirement is to scan an FTP directory for the presence of 4 files and if a specific file exists I can begin to GET those files, read the contents and save the contents into an SQL...
0
7157
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7379
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
7098
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
5084
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3232
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3221
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1591
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
798
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
455
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.