I need multiple STA threads inside my ASP.NET application to use some COM components.

I read somewhere inside each process, only one STA thread can exist. I coded a sample project and made many threads and set their apartment state to STA and they work with COM objects without any exception.

Is it possible to have many STA threads inside a process ?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

If your program works with many STA threads, then why do you ask if it works? :) .NET allows you to have any number of STA threads, so it must work. What you read might be true for typical native applications with only one main thread and a message loop, though.

link|improve this answer
+1 for focusing on question. – Xaqron Dec 24 '10 at 20:14
feedback

There is no inherent limit to the number of STA threads you can have, however you will probably want to impose such a limit on your own.

If you allow your ASP.NET application to create additional STA threads as new user requests arrive, without limiting it, eventually the number of threads will cause your application's performance to deteriorate as the amount of time spent by the CPU on context switching becomes too high. This also makes your application much more vulnerable to denial of service attacks.

You can consider a design were you set a limit for the number of STA threads based on your hardware or users profile, and once the limit is reached, implement some pooling to re-use existing STA threads to service new requests.

link|improve this answer
1  
+1 For limiting thread creation. Exactly the kind of thing that will bite you in production. – chibacity Dec 24 '10 at 19:02
I was thinking of using thread-pool but maybe setting apartment type of a thread from thread-pool makes some problem since a thread' apartment type cannot switched more than once. – Xaqron Dec 24 '10 at 20:13
If I remember correctly, ThreadPool threads are always MTA. Anyway, it would probably be a very bad idea to use ThreadPool for STA COM objects. STA threads need to pump messages and ThreadPools threads don't pump after they've completed the work item you have queued on them. Creating an STA COM object on ThreadPool may even cause the finalizer thread to get blocked, which can lead to memory leaks. – Ran Dec 24 '10 at 22:50
feedback

There is no upper limit, other than memory. You cannot call an object that was created in one STA from another STA without marshaling. Don't forget the required message loop.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.