Article ID: 841557 - Last Review: July 7, 2004 - Revision: 1.3 The ASP.NET worker process restarts before the timeout setting has lapsedSYMPTOMSThe Microsoft ASP.NET worker process Aspnet_wp.exe restarts or is recycled before the timeout setting that is specified in the ScriptTimeout property, the Session.Timeout attribute, the executionTimeout property, or another setting, has lapsed. The following error message is logged in the application event log: Event Type: Error Event Source: ASP.NET 1.0.3705.0 Event Category: None Event ID: 1003 Date: 4/24/2002 Time: 6:18:23 PM User: N/A Computer: <ComputerName> Description: aspnet_wp.exe (PID: Number) was recycled because it was suspected to be in a deadlocked state. It did not send any responses for pending requests in the last 180 seconds. CAUSEThis problem occurs when the ASP.NET worker process has been idle for the duration that is specified in the responseDeadlockInterval configuration setting in the Machine.config file. This behavior causes the deadlock detection mechanism to restart the worker process. Then, the deadlock detection mechanism writes an error message in the application event log that indicates that the restart occurred because of a suspected deadlock state. For example, a slow write to the client may take longer than the value of the responseDeadlockInterval configuration setting in the Machine.config file. RESOLUTIONIn the <processModel> section of the Machine.config file, increase the responseDeadlockInterval configuration setting. Set a maximum value that is at least the same as your longest application-level timeout setting. You may also set the responseDeadlockInterval configuration setting to Infinite. This configuration setting affects all ASP.NET applications that run on the server. The Machine.config file is typically located in the C:\WindowsFolder\Microsoft.NET\Framework\Version\CONFIG folder. Note Version is the version number of the Microsoft .NET Framework that you installed on your server. WindowsFolder is your Microsoft Windows folder. Typically, your Microsoft Windows folder is C:\Windows\. To increase the responseDeadlockInterval configuration setting, follow these steps:
| Article Translations
|
Back to the top
