In 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:
- Click Start, click Run, type notepad, and then click OK.
- In Notepad, click File, click Open, locate the C:\WindowsFolder\Microsoft.NET\Framework\Version\CONFIG folder, click All files in the Files of type list, click Machine.config in the file list, and then click OK.
- Locate the responseDeadlockInterval configuration setting in the Machine.config file, and then change the value to the one that you want.
- Save the Machine.config file, and then close Notepad.
The following code is the <processModel> section of the Machine.config file where the
responseDeadlockInterval configuration setting appears:
<processModel enable="true|false"
timeout="hrs:mins:secs|Infinite"
idleTimeout="hrs:mins:secs|Infinite"
shutdownTimeout="hrs:mins:secs|Infinite"
requestLimit="hrs:mins:secs|Infinite"
requestQueueLimit="num|Infinite"
restartQueueLimit="num|Infinite"
memoryLimit="percent"
cpuMask="num"
webGarden="true|false"
userName="username"
password="password"
logLevel="All|None|Errors"
clientConnectedCheck="hrs:mins:secs|Infinite"
responseDeadlockInterval="hrs:mins:secs|Infinite"
responseRestartDeadlockInterval="hrs:mins:secs|Infinite"
comAuthenticationLevel="Default|None|Connect|Call|
Pkt|PktIntegrity|PktPrivacy"
comImpersonationLevel="Default|Anonymous|Identify|
Impersonate|Delegate"
maxWorkerThreads="num"
maxIoThreads="num"/>