PRB: User Requests to Active Server Pages Serialize from the Browser

ID: Q244298


The information in this article applies to:
  • Active Server Pages


SYMPTOMS

User requests serialize when you test your Active Server Pages (ASP) pages from one instance of a browser.

-or-

In Performance Monitor, you see the number of Requests Queued go up even though Requests Executing is less than the number of available threads for ASP, when you test your ASP pages by refreshing a browser.


CAUSE

User requests from the same session are serialized by ASP.


RESOLUTION

Testing concurrency issues should be done using a stress simulation tool. For additional information, click the article number below to view the article in the Microsoft Knowledge Base:

Q231282 INFO: Stress Tools to Test Your Web Server

You can either disable session state for ASP at the server-side, or you can force new sessions from the client-side. Forcing new sessions at the client-side causes ASP to treat each request to be handled as a separate user session.

For additional information on disabling ASP sessions at the server-side, click the article number below to view the article in the Microsoft Knowledge Base:
Q244465 Disable ASP Session State

To force new sessions from the client-side, you need to do the following:

  • Disable cookies.


Additionally, if you are using Internet Explorer 4.0, do the following:
  • Set the option Browse in New Process.


  • Do not launch additional browser windows from within Internet Explorer by clicking New from the File menu, and then clicking Window.


  • Do not launch additional browsers windows through client-side script.



STATUS

This behavior is by design.


REFERENCES

For additional information, click the article number below to view the article in the Microsoft Knowledge Base:

Q216580 PRB: Blocking/Serialization When Using InProc Component (DLL) from ASP

Additional query words:

Keywords : kbASP kbASPObj kbThread kbGrpASP kbDSupport kbPerformance
Version : winnt:
Platform : winnt
Issue type : kbprb


Last Reviewed: December 10, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.