Tagged Questions
10
votes
2answers
637 views
What are the limitations of a STA thread in compare to MTA threads?
If we make a thread STA like this: Thread.SetApartmentState(STA); then it cannot run code marked with [MTAThread] attribute.
We have seen [STAThread] in windows and console applications but I have ...
5
votes
2answers
344 views
Threading issues in C# from external process
I have this simple code:
public void Run()
{
var invokerThread = new Thread(new ThreadStart(RunOnBackground));
invokerThread.Start();
}
private void RunOnBackground()
{
...
3
votes
2answers
160 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 ...
1
vote
2answers
51 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
212 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
3answers
756 views
STA, MTA and OLE nightmare
I have to include a .NET application into another .NET application as a plugin. The plugin interface requires me to inherit from a template form. The form is then attached in a MDI when the plugin is ...
1
vote
1answer
580 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
1answer
16 views
Using main form as Parent to a new form created on different thread
I have a main form that runs a BackgroundWorker thread.
While the worker is running I "freeze" the main form and wait for it to finish while showing its progress.
In one on the scenarios the worker ...
0
votes
2answers
122 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
80 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
1answer
127 views
STA, MTA conflict warning Important?
I recently started writing a C++/CLI wrapper for a native c++ library. I'm now getting this compile warning
"warning LNK4249: directive '/CLRTHREADATTRIBUTE:STA' conflicts with command line; ...
0
votes
2answers
526 views
Visual C++ GUI app stuck in MTA mode
I've got a C++ gui project exhibiting some strange behavior. On my machine, the code compiles and runs just fine. However, on another machine, The code compiles but ends up running in MTA somehow. ...
0
votes
3answers
749 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. ...