2
votes
1answer
111 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. …
1
vote
3answers
150 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 a …
1
vote
1answer
62 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(Apartment …
1
vote
2answers
169 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 …
1
vote
1answer
130 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 servi …
0
votes
0answers
9 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 cli …
0
votes
1answer
329 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 applica …
0
votes
1answer
148 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 …
0
votes
3answers
149 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 inc …
0
votes
2answers
203 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 runni …
0
votes
3answers
259 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 …
