Article ID: 308095 - Last Review: February 23, 2007 - Revision: 2.9 PRB: Creating STA Components in the Constructor in ASP.NET ASPCOMPAT Mode Negatively Affects PerformanceThis article was previously published under Q308095 SYMPTOMS
When you call apartment-threaded components from an ASP.NET page in ASPCOMPAT mode, you may notice severe performance degradation.
CAUSE
If you use ASPCOMPAT mode (that is, if you use a page with the <%@ ASPCOMPAT="true" %> directive), ASP.NET runs those pages on an STA thread pool. However, Component Object Model (COM) components that are created at construction time are created before the request is scheduled to the single-threaded apartment (STA) thread pool and are therefore created from a multithreaded apartment (MTA) thread. In this scenario, you experience substantial performance degradation. Most significantly, the same thread (host STA) executes all instances of apartment-threaded components that are created from MTA threads. This means that even though all users have a reference to their own instance of the COM component, all of the calls into these components are serialized to this one thread (only one call executes at a time). Additionally, there is a smaller performance hit each time a call is made to the component from the Page events because of a thread switch. This is because the Page events are executed on a thread from the STA pool, but the COM component is still executed on the host STA (because the COM component was created from an MTA client). This thread switch also leads to other errors if you use impersonation. For more information, see the "References" section of this article. RESOLUTION
If you are using ASPCOMPAT mode with STA components, only create COM components from a method or one of the Page events (for example, Page_Load, Page_Init, and so on), and do not create these COM components at construction time. For example, avoid a member declaration similar to the following, which creates the component at construction time: Visual Basic .NET Visual Basic .NET STATUSThis behavior is by design. REFERENCESFor additional information, click the article number below
to view the article in the Microsoft Knowledge Base:
325791
(http://support.microsoft.com/kb/325791/EN-US/
)
PRB: Access Denied Error Message Occurs When Impersonating in ASP.NET and Calling STA COM Components
APPLIES TO
| Article Translations
|

Back to the top
