Ask a Question related to ASP.NET General, Design and Development.
-
scott dever #1
Maching.config responsedeadlockinterval
In .NET framework 1.0 I had the responseadelockinterval
set to 1:30 (1 hour 30 minutes) to allow for some long
running queries to finish on certain pages of an ASP.NET
application. After upgrading to framework 1.1 the
setting seems to be ignored and the applications
deadlocks at one hour. The user gets a page on their
browser that says - Unable to display the page. The
query is still running on the SQL Server. I am running
IIS 5.0.
Am I missing a setting somewhere else?
Thanks
scott dever Guest
-
Error loading XML file c:\windows\microsoft.net\framework\v1.0.3705\Config\machine.config
I had many ASP.NET web applications that I created before I had to rebuild my machine. After a fresh install of XP Pro, VS.NET 2003, etc, I now... -
Web References how to config to read URL from config?
It's great that VS.NET makes it so effortless to add a web reference to a web service. The problem is, I haven't figured out a way to configure the... -
config file: a) what Module ? b) conditionals in config (for multiple hosts)
Hi, a) I am looking for a module to handle config files. There are a number of these modules, like AppCconig. Any consensus about The Right... -
[RCR] Include CONFIG::Config['rubydocdir'] in rbconfig.rb
Hi folks, I apologise if people have read this RCR and are not interested, but this is what I consider to be an important RCR, not a merely... -
Attn: Intelligent lifeforms... responseDeadlockInterval
What are the possible repercussions to setting this to infinite..? -
Bassel Tabbara [MSFT] #2
RE: Maching.config responsedeadlockinterval
Hello Scott,
Did you increase the value of the <executionTimeout> parameter?
You can also tune the following parameters in your Machine.config file to
best fit your situation:
- <maxWorkerThreads>
- <maxIoThreads>
- <minFreeThreads>
- <minLocalRequestFreeThreads>
- <maxconnection>
- <executionTimeout>
Do you have your application associated with version 1.1 of the framework?
To configure the application to use ASP.NET 1.0, follow these steps:
1. Click "Start", and then click "Run".
2. In the "Open" text box, type "cmd", and then click "OK".
3. At the command prompt, locate the following directory:
<WindowsDirectory>\Microsoft.NET\Framework\v1.0.37 05\
4. At the command prompt, type one of the following commands:
- To Install ASP.NET 1.0 recursively
"aspnet_regiis -s W3SVC/1/ROOT/AspVerApp1" (without the quotation marks)
-or-
- To Install ASP.NET 1.0 non-recursively
"aspnet_regiis -sn W3SVC/1/ROOT/AspVerApp1" (without the quotation marks)
For more information on deadlocks check the following kb article on how to
resolve this problem:
821268 PRB: Contention, Poor Performance, and Deadlocks When You Make Web
[url]http://support.microsoft.com/?id=821268[/url]
This might give you a solution for 1.1.
Thanks,
Bassel Tabbara
Microsoft, ASP.NET
This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "scott dever" <scottd@logansroadhouse.com>
| Sender: "scott dever" <scottd@logansroadhouse.com>
| Subject: Maching.config responsedeadlockinterval
| Date: Tue, 8 Jul 2003 10:04:42 -0700
| Lines: 13
| Message-ID: <8b7001c34573$065364b0$a401280a@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNFcwZTUsba4GxdSsqhYCiJq33NAw==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa09.phx.gbl
| Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:33067
| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| In .NET framework 1.0 I had the responseadelockinterval
| set to 1:30 (1 hour 30 minutes) to allow for some long
| running queries to finish on certain pages of an ASP.NET
| application. After upgrading to framework 1.1 the
| setting seems to be ignored and the applications
| deadlocks at one hour. The user gets a page on their
| browser that says - Unable to display the page. The
| query is still running on the SQL Server. I am running
| IIS 5.0.
|
| Am I missing a setting somewhere else?
|
| Thanks
|
Bassel Tabbara [MSFT] Guest
-
Scott Dever #3
RE: Maching.config responsedeadlockinterval
Hello,
Thanks for the feedback. The odd thing is that there is
no error reported in the event viewer of either the web
server or the SQL Server. I might be looking at the
wrong setting. After ~1 hour the user gets a page in
their browser that says - "page cannot be displayed".
They do not get an error message.
Let me know what you think.
Thanks!parameter?>-----Original Message-----
>Hello Scott,
>Did you increase the value of the <executionTimeout>Machine.config file to>You can also tune the following parameters in yourof the framework?>best fit your situation:
>
>- <maxWorkerThreads>
>- <maxIoThreads>
>- <minFreeThreads>
>- <minLocalRequestFreeThreads>
>- <maxconnection>
>- <executionTimeout>
>
>Do you have your application associated with version 1.1these steps:>
>To configure the application to use ASP.NET 1.0, followclick "OK".>
>
>1. Click "Start", and then click "Run".
>
>2. In the "Open" text box, type "cmd", and then<WindowsDirectory>\Microsoft.NET\Framework\v1.0. 37>
>3. At the command prompt, locate the following directory:
>
>
>
05\commands:>
>4. At the command prompt, type one of the followingW3SVC/1/ROOT/AspVerApp1" (without the quotation marks)>
> - To Install ASP.NET 1.0 recursively
>
>
> "aspnet_regiis -sW3SVC/1/ROOT/AspVerApp1" (without the quotation marks)> -or-
> - To Install ASP.NET 1.0 non-recursively
>
>
> "aspnet_regiis -snarticle on how to>
>For more information on deadlocks check the following kbWhen You Make Web>resolve this problem:
>821268 PRB: Contention, Poor Performance, and Deadlocksand confers no rights.>[url]http://support.microsoft.com/?id=821268[/url]
>
>This might give you a solution for 1.1.
>
>
>Thanks,
>Bassel Tabbara
>Microsoft, ASP.NET
>
>This posting is provided "AS IS", with no warranties,V5.50.4910.0300>
>
>
>--------------------
>| Content-Class: urn:content-classes:message
>| From: "scott dever" <scottd@logansroadhouse.com>
>| Sender: "scott dever" <scottd@logansroadhouse.com>
>| Subject: Maching.config responsedeadlockinterval
>| Date: Tue, 8 Jul 2003 10:04:42 -0700
>| Lines: 13
>| Message-ID: <8b7001c34573$065364b0$a401280a@phx.gbl>
>| MIME-Version: 1.0
>| Content-Type: text/plain;
>| charset="iso-8859-1"
>| Content-Transfer-Encoding: 7bit
>| X-Newsreader: Microsoft CDO for Windows 2000
>| Thread-Index: AcNFcwZTUsba4GxdSsqhYCiJq33NAw==
>| X-MimeOLE: Produced By Microsoft MimeOLEmicrosoft.public.dotnet.framework.aspnet:33067>| Newsgroups: microsoft.public.dotnet.framework.aspnet
>| Path: cpmsftngxa09.phx.gbl
>| Xref: cpmsftngxa09.phx.gblresponseadelockinterval>| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
>| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>|
>| In .NET framework 1.0 I had theASP.NET>| set to 1:30 (1 hour 30 minutes) to allow for some long
>| running queries to finish on certain pages of anrunning>| application. After upgrading to framework 1.1 the
>| setting seems to be ignored and the applications
>| deadlocks at one hour. The user gets a page on their
>| browser that says - Unable to display the page. The
>| query is still running on the SQL Server. I am>| IIS 5.0.
>|
>| Am I missing a setting somewhere else?
>|
>| Thanks
>|
>
>.
>Scott Dever Guest
-
Bassel Tabbara [MSFT] #4
RE: Maching.config responsedeadlockinterval
Hello Scott.
Try to set the responseDeadLockInterval attribute to Infinite. Does this
work?
A crash dump will tell why there is a deadlock. To do the dump you need to
use ADPlus.
For more information on this check out:
286350 HOW TO: Use ADPlus to Troubleshoot "Hangs" and "Crashes"
[url]http://support.microsoft.com/?id=286350[/url]
You might be running into the same problem as described in
Q321792 ASP.NET Worker Process (Aspnet_wp.exe) Is Recycled Unexpectedly
[url]http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q321792[/url]
Are you using static OledbConnections?
Please let me know what happens with these troubleshooting steps.
Thanks,
Bassel Tabbara
Microsoft, ASP.NET
This posting is provided "AS IS", with no warranties, and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "Scott Dever" <scottd@logansroadhouse.com>
| Sender: "Scott Dever" <scottd@logansroadhouse.com>
| References: <8b7001c34573$065364b0$a401280a@phx.gbl>
<c57SjNiRDHA.1720@cpmsftngxa09.phx.gbl>
| Subject: RE: Maching.config responsedeadlockinterval
| Date: Wed, 9 Jul 2003 12:04:36 -0700
| Lines: 122
| Message-ID: <051901c3464c$f05b9b20$a101280a@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcNGTPBbi2Tp37YbSji+CkVdty/KsA==
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:158089
| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hello,
| Thanks for the feedback. The odd thing is that there is
| no error reported in the event viewer of either the web
| server or the SQL Server. I might be looking at the
| wrong setting. After ~1 hour the user gets a page in
| their browser that says - "page cannot be displayed".
| They do not get an error message.
|
| Let me know what you think.
|
| Thanks!
| >-----Original Message-----
| >Hello Scott,
| >Did you increase the value of the <executionTimeout>
| parameter?
| >You can also tune the following parameters in your
| Machine.config file to
| >best fit your situation:
| >
| >- <maxWorkerThreads>
| >- <maxIoThreads>
| >- <minFreeThreads>
| >- <minLocalRequestFreeThreads>
| >- <maxconnection>
| >- <executionTimeout>
| >
| >Do you have your application associated with version 1.1
| of the framework?
| >
| >To configure the application to use ASP.NET 1.0, follow
| these steps:
| >
| >
| >1. Click "Start", and then click "Run".
| >
| >2. In the "Open" text box, type "cmd", and then
| click "OK".
| >
| >3. At the command prompt, locate the following directory:
| >
| >
| >
| <WindowsDirectory>\Microsoft.NET\Framework\v1.0. 37
| 05\
| >
| >4. At the command prompt, type one of the following
| commands:
| >
| > - To Install ASP.NET 1.0 recursively
| >
| >
| > "aspnet_regiis -s
| W3SVC/1/ROOT/AspVerApp1" (without the quotation marks)
| > -or-
| > - To Install ASP.NET 1.0 non-recursively
| >
| >
| > "aspnet_regiis -sn
| W3SVC/1/ROOT/AspVerApp1" (without the quotation marks)
| >
| >For more information on deadlocks check the following kb
| article on how to
| >resolve this problem:
| >821268 PRB: Contention, Poor Performance, and Deadlocks
| When You Make Web
| >[url]http://support.microsoft.com/?id=821268[/url]
| >
| >This might give you a solution for 1.1.
| >
| >
| >Thanks,
| >Bassel Tabbara
| >Microsoft, ASP.NET
| >
| >This posting is provided "AS IS", with no warranties,
| and confers no rights.
| >
| >
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "scott dever" <scottd@logansroadhouse.com>
| >| Sender: "scott dever" <scottd@logansroadhouse.com>
| >| Subject: Maching.config responsedeadlockinterval
| >| Date: Tue, 8 Jul 2003 10:04:42 -0700
| >| Lines: 13
| >| Message-ID: <8b7001c34573$065364b0$a401280a@phx.gbl>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| Thread-Index: AcNFcwZTUsba4GxdSsqhYCiJq33NAw==
| >| X-MimeOLE: Produced By Microsoft MimeOLE
| V5.50.4910.0300
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa09.phx.gbl
| >| Xref: cpmsftngxa09.phx.gbl
| microsoft.public.dotnet.framework.aspnet:33067
| >| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| In .NET framework 1.0 I had the
| responseadelockinterval
| >| set to 1:30 (1 hour 30 minutes) to allow for some long
| >| running queries to finish on certain pages of an
| ASP.NET
| >| application. After upgrading to framework 1.1 the
| >| setting seems to be ignored and the applications
| >| deadlocks at one hour. The user gets a page on their
| >| browser that says - Unable to display the page. The
| >| query is still running on the SQL Server. I am
| running
| >| IIS 5.0.
| >|
| >| Am I missing a setting somewhere else?
| >|
| >| Thanks
| >|
| >
| >.
| >
|
Bassel Tabbara [MSFT] Guest



Reply With Quote

