Concept in the threading model of the Component Object Model (COM), occurs in terms like STA and MTA
-1
votes
1answer
69 views
Unable to create an object of com components written in unmanaged code from .Net wcf service
I am writing a Wcf Service library and want to load an unmanaged com dll. The com dll threaded model is not set so its a Single-threaded legacy component that runs only in the main STA threading model
...
0
votes
0answers
29 views
How to find apartment of thread identifier for STA-threaded COM object?
In my efforts to understand the COM Interop between my .NET program and a third-party native COM dll, I would like to explore what apartments or threads the COM objects belong to. Is it possible to ...
1
vote
1answer
135 views
Out of process COM server with MTA
I have an out of proc COM (ATL) Server that has been created as free threaded (CComMultiThreadModel)
I am slightly confused as to how that relates to the re-entrancy of calls into my object, for ...
1
vote
2answers
71 views
Do apartments “live” on the server side or on the client side in a out-process environment?
I' having an hard time trying to understand COM apartments in outprocess environment.
Basically I can't understand why the client is required to call CoInitializeEx to register it's own thread in an ...
2
votes
1answer
3k views
ActiveX control cannot be instantiated because thread is in a single-threaded apartment. Happens after waking PC from sleep
I am working on a VOIP client (Window's form) that opens a browser window (ExtendedWebBrowser) when a call is made or received. Normally it works fine but if the computer is put into sleep mode and ...
0
votes
1answer
819 views
0x80010100: System call failed" exception, ContextSwitchDeadlock
Long story short: in a C# application that works with COM inproc-server (dll), I encounter "0x80010100: System call failed" exception, and in debug mode also ContextSwitchDeadlock exception.
Now more ...
2
votes
1answer
438 views
ATL sample of calling (marshalling) Apartment-threaded COM interfaces from a worker thread
I'm looking for a code sample which illustrates making cross-threaded COM calls in an ATL COM Server DLL. Know one?
More details:
My component is an IE Browser Helper Object which needs to do work ...
0
votes
2answers
98 views
STA applies to objects and functions?
My understanding of STA is that if my thread is running in an STA apartment then I do not have to worry about thread safety and calls to the functions of my thread are automagically queued.
My ...
4
votes
1answer
271 views
About apartment threading models
I have a few questions about Apartments:
Was this model introduced for COM purposes only?
Can you point to good resources about them?
From a thread safety standpoint what does it mean that a ...
0
votes
1answer
221 views
TimerCallback Delegate to drive an STA model .NET library component
I'm trying to use the TimerCallback Delegate mechanism to drive instances of objects from a 3rd party .NET library component on separate threads executing on a timed basis.
When I try to create an ...
2
votes
1answer
356 views
Thread.Join in a shared hosting environment
I wonder if someone can help me - I've been programming VB.Net for a long time but have rarely had to do much threading in ASP.Net.
I'm attempting to take "screenshots" of websites using an in-memory ...
1
vote
1answer
739 views
How to make Quartz.net job to run in a single-threaded apartment?
I simply tried this:
public class FooJob : IJob
{
public FooJob() { }
public void Execute(JobExecutionContext context)
{
Thread.CurrentThread.SetApartmentState(ApartmentState.STA);
}
}
...
5
votes
2answers
1k views
Legacy VB6 COM+ DLL calling into native Win32 DLL — threading issues with STA?
Come across what looks at first sight like an MT-issue, but I'm trying to understand in detail the STA model used by COM+.
Effectively, I have a legacy COM+ component, written in VB6, that calls into ...
2
votes
1answer
1k views
Asynchronous operations within an asynchronous operation
My multi-threading knowledge is still pretty rudimentary, so would really appreciate some pointers here. I have an interface, IOperationInvoker (from WCF) which has the following methods:
...
17
votes
5answers
19k views
Single-Threaded Apartments vs Multi-Threaded Apartments [duplicate]
Possible Duplicate:
Could you explain STA and MTA?
All ThreadPool threads are in the
multithreaded apartment.
--As per the MSDN
What does that mean? I am really concerned with what ...
0
votes
6answers
6k views
WebBrowser.Navigated Only Fires when I MessageBox.Show();
I have a WebBrowser control which is being instantiated dynamically from a background STA thread because the parent thread is a BackgroundWorker and has lots of other things to do.
The problem is ...
0
votes
1answer
261 views
What does the term “input-synchronized calls” mean?
I found this in an article on Multithreaded Apartments, but can’t find a definition for “input-synchronized calls”.
(Article is at http://msdn.microsoft.com/en-us/library/ms693421(VS.85).aspx)
As ...
146
votes
6answers
32k views
Could you explain STA and MTA?
Can you explain STA and MTA in your own words?
Also, what are apartment threads and do they pertain only to COM? If so, why?
