Tagged Questions
The sta tag has no wiki summary.
11
votes
3answers
5k views
How to run something in the STA thread?
In my WPF application I do some async communication (with server). In the callback function I end up creating InkPresenter objects from the result from server. This requires the running thread to be ...
10
votes
2answers
643 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 ...
6
votes
2answers
15k views
Single-threaded apartment - cannot instantiate ActiveX control
I need to get information about applied CSS styles in HTML page. I used AxWebBrowser and iterate IHTMLDOMNode. I'm able to get all the data I need and move the code into my application. The problem is ...
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()
{
...
4
votes
5answers
266 views
C# Waiting for clipboard text change (error)
I'm trying to detect every time the clipboard data changes. And so, I set a timer and have it continuously check Clipboard.GetText() for changes.
I'm using the following code:
public void ...
3
votes
2answers
165 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 ...
3
votes
1answer
564 views
How to tell thread-pool to run a delegate on a `STA` thread?
I need a thread-pool for working with COM objects inside an ASP.NET project.
QueueUserWorkItemSTA(WaitCallback)
3
votes
3answers
378 views
How many 'STA' threads can coexist inside a process?
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 ...
3
votes
3answers
364 views
How are STA COM components handled when used in a WCF service hosted in IIS (7+)?
From what I understand, when a COM component marked as using STA is used from a MTA thread, the calls are supposed to be marshalled to an STA thread and executed from that dedicated thread. In the ...
3
votes
4answers
2k views
Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 script
I'd like to convert Keith Hill's C# implementation of Get-Clipboard and Set-Clipboard into pure PowerShell as a .PSM1 file.
Is there a way to spin up an STA thread in PowerShell as he does in his ...
2
votes
2answers
408 views
How to pump message for COM STA threads in C#?
I have a main STA thread that calls a lot methods on the COM object and a secondary STA thread that does a lot work on the same object too. I want the main thread and the secondary thread to work in ...
2
votes
2answers
186 views
get exception when show System.Windows.Forms.FolderBrowserDialog in wpf
I tried to show folderbrowserdialog in wpf but I got this exception
Current thread must be set to single
thread apartment (STA) mode before OLE
calls can be made. Ensure that your
Main ...
2
votes
1answer
147 views
WPF: how to marshall data to user control from another domain
I have to use functionality that is in another application domain. The result should be displayed in user control.
I have something like that:
var instance = domain.CreateInstanceFromAndUnwrap(...);
...
2
votes
1answer
162 views
A STA threading mode thread also blocks the winform UI thread?
I am using a STA COM object from a back ground thread, one of the COM object's a method will block, when i call it from a new thread which is in STA threading mode since the COM object's mode is STA, ...
2
votes
1answer
503 views
Why is Thread.Join not letting through COM messages?
I am running some multi-threaded code that does the following.
On an STA thread, I create a
'worker' thread, and run it.
The STA thread then waits for the worker
thread to exit.
The worker thread ...
1
vote
2answers
54 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
49 views
Inconsistency when calling in-proc registration-free com servcer from c#
I've encountered strange behavior when using registration-free com component. Here is what i have:
Com component. I dont know what threading model it is designed for
as i dont have source codes, but ...
1
vote
2answers
107 views
How can i write a dll function that uses the C# Keyboard Class
I want to use the following code to access the state of the keyboard at a certain time.
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using ...
1
vote
0answers
92 views
Using STA for WebBrowser Control
I am trying to add a WebBrowser to an application to be able to display a webpage, but keep getting a problem with the threading type.
Currently I am getting:
ActiveX control ...
1
vote
1answer
121 views
Unable to set WinForms clipboard in unit test
I'd like to populate the Forms.Clipboard with text from a NUnit test.
The first problem I encountered was that the Clipboard must be used in STA mode. I found the solution (NUnit 2.5.x+) to set the ...
1
vote
1answer
47 views
Blocking method of an STA COM object is a design defect?
Say a COM object is created on an STA thread. So all calls to this object are serialized in this thread. So if a method of the object's is blocking, all threads that use this object are blocked.
So ...
1
vote
1answer
199 views
Blocking calls(wait, com calls) in STA thread
I have a windows service which creates 10+ threads which:
do their job and then enter WaitForMultipleObjects state until they are resumed again ..
each thread creates TDCOMConnection component calls ...
1
vote
2answers
281 views
Few Questions about Threading, COM+ and STA apartments
I have a windows service which creates 10 threads + the one which creates the tasks list.
Each of these 11 threads enters STA by calling CoInitialize(nil).
Tasks list is created by one thread, ...
1
vote
1answer
129 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; ...
1
vote
0answers
214 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
81 views
Which blocking threading operations in .NET will handle COM messages when blocked?
When creating a new STA thread to host an STA COM component, it is the responsibility of that thread to pump Windows messages related to COM. From what I've been able to gather, certain built in .NET ...
1
vote
2answers
1k views
Using WPF UI thread should always ensure STA apartment mode, right?
In my WPF application I communicate asynchronously with a server. The callback will hence not be run in the UI thread, and as I need to do some WPF stuff there (create InkPresenter object) I need it ...
1
vote
2answers
506 views
How to check apartment state of current thread?
I have a function which requires to be run in STA apartment state. I wan't to check if it is being run as STA, and if not spawn a new thread which runs in STA.
How can I check which apartment state ...
1
vote
1answer
533 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);
}
}
...
1
vote
3answers
757 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
583 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
20 views
Get User info in WCF-service with [STAOperationBehavior] attribute
I have a silverlight-enabled WCF-service, of which one method absolutely requires the [STAOperationBehavior] attribute. I need to access user details (Forms Authentication) for the user, but ...
0
votes
1answer
17 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
0answers
63 views
wpf threading, thread must be STA
I have a window(say main window) with a frame which has a page in it. A button on the page opens another window(say popup window). Now i am trying to invoke a method in the main window from a button ...
0
votes
0answers
29 views
MSTest threading error after VS2010 migration
My unit tests ran successfully before migrating my solution to VS2010. After migrating I get -
TypeInitializationException was unhandled by user code.
Inner Exception: WaitAll for multiple handles ...
0
votes
0answers
31 views
Calling another form with WebBrowser from mainform - giving ERROR?
I'm calling from3 from my form1 and its giving this error in InitializeComponent()
Form3 frm = new Form3();
frm.Show();
Error "ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot ...
0
votes
2answers
149 views
MsgWaitForMultipleObjectsEx deadlocks the main STA thread in MFC application
What is the best was to do STA thread synchronization?
I have a dialog based MFC application with two STA threads: the main and the second. I created the COM object in the main UI thread.
I call ...
0
votes
2answers
123 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
132 views
STA thread in windowapplication
I have a bit of code in my project like shown below,here what is the usage of STA thread ?
What i know about STA is it is Single Threaded Apartment,it is only required when using COM components.And it ...
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
48 views
Is there a generic 'FuncSTA' for invoking delegates by a STA thread?
I have an ASP.NET application and need to use some COM components inside it.
I need a wrapper class over Func or Action which creates a new STA thread and run the delegate with that thread or ...
0
votes
1answer
264 views
ElementHost gives me “The calling thread must be STA, because many UI components require this.”
I just added an ElementHost to a windows Form(There are some other c# code in the Form). Then it gave me the error "The calling thread must be STA, because many UI components require this." I changed ...
0
votes
1answer
124 views
Duplex WCF + Static Collection of COM objects
I am trying to build a WCF service that exposes the functionality of a particular COM object that I do not have the original source for. I am using duplex binding so that each client has their own ...
0
votes
1answer
572 views
Hooking thread exit
Is there a way for me to hook the exit of managed threads (i.e. run some code on a thread, just before it exits?)
I've developed a mechanism for hooking thread exit that works for some threads. Step ...
0
votes
3answers
479 views
Why is this COM interop event not raised whilst running under an STA thread?
Can somebody please explain why the event "OnNewMail" is not raised when using an STA thread in the code below? The program attempts to use the Redemption library to intercept incoming outlook mails.
...
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. ...