Maching.config responsedeadlockinterval

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. [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...
    5. Attn: Intelligent lifeforms... responseDeadlockInterval
      What are the possible repercussions to setting this to infinite..?
  3. #2

    Default 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

  4. #3

    Default 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!
    >-----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
    >|
    >
    >.
    >
    Scott Dever Guest

  5. #4

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139