Tagged Questions
3
votes
2answers
213 views
COM outbound call results in “An outgoing call cannot be made since the application is dispatching an input-synchronous call.”
I have a COM server (C++/STA (MFC based app)) and a COM client (C#/MTA). The COM server must live in an STA, since it's an MFC app (I have no choice in this matter). The client issues a call to the ...
2
votes
2answers
464 views
QueueUserWorkItem with COM in C++
I have a performance issue where clients are creating hundreds of a particular kind of object "Foo" in my C++ application's DOM. Each Foo instance has its own asynchronous work queue with its own ...
1
vote
2answers
63 views
Microsoft's Aparment Analogy (STA, MTA): Need help understanding it
I've read lots about the Microsoft's threaded apartment model, but I'm still having a little trouble visualizing it.
Microsoft uses the analogy of living things living in an apartment. So, for STA, ...
1
vote
0answers
225 views
Do I still need a message pump in an STA thread that contains an STA COM object?
I am using a legacy STA COM object in a C# windows service that runs as an MTA thread. In order to use this COM object I created it in an STA thread which seems to work. Upon further investigation I ...
1
vote
1answer
455 views
Winforms: One COM object needs an STAThread, the other needs an MTAThread. How can I use them?
I'm trying to build a Winforms application with two COM components. However, one of the components only works when using [MTAThread] and the other only works with [STAThread].
What would the ...
1
vote
1answer
607 views
Running REST/WCF as STA instead of MTA for COM
Is it possible to configure a REST (WCF) service to run as STA instead of MTA? This is approach is needed in order to run legacy COM objects. In order to configure ASMX web services to run as STA ...
0
votes
2answers
131 views
Questions about COM multithreading and STA / MTA
Hi I am a beginner in COM. I want to test a COM dll in both STA and MTA modes. My first question is: is it possible a COM object supports both STA and MTA?
Now I imagine the STA code snippet below:
...
0
votes
1answer
87 views
Aspcompat in ASPX Page
In my aspx pages, I call a COM component that uses STA. So I use aspcompat=true parameter, but I want to understand the logic. What does it exactly do? As far as I know, in STA, it is assumed to be ...
0
votes
3answers
756 views
Is possible having two COM STA instances of the same component?
I had a problem discovered on another thread here, I need to access a COM component that is STA. I'll run it on a dual-core computer, a process using this component only reaches 50% of CPU. ...