vote up 0 vote down star
1

I have a WCF service which includes UI components, which forces me to be in STA mode.

How do I set the service behaviour to STA-mode?

flag

5 Answers

vote up 2 vote down

Try this article (WCF STA Threads), provides very clear instructions(and code) for using WCF and STA Threads.

It explains how to create a WCF behaviour to allow WCF operations to run in a STA thread.

link|flag
vote up -2 vote down

This was the solution that I found worked for me:

Running ASMX Web Services on STA Threads

link|flag
Except he says WCF right in the title. -1. – John Saunders Jul 31 at 11:22
Although its the wrong answer, the article was an interesting read! – RichardOD Sep 22 at 9:44
vote up 0 vote down

I'm doing something similar to you.

My solution was to route all calls through an STA thread queue. I used a threadsafe collection from the new parallel framework to queue up Actions I wanted to run on a STA thread. I then had X number of STA threads that continually checked the queue for new actions to execute.

link|flag
vote up -1 vote down

The service uses a reference to a wpf dll which opens a ui window(used as view port) for picture analycies. When the service is trying to create an instance of that item(inherits from window) it throws an exception: The calling thread must be an STA

link|flag
add comments to answer, don't post another answer – spoon16 Sep 11 at 0:23
vote up 0 vote down

I would investigate using the [STAThread] attribute to switch the threading model. e.g.

[STAThread]
static void Main()
{
        ServiceBase[] ServicesToRun;
        ServicesToRun = new ServiceBase[] { new Host() };
        ServiceBase.Run(ServicesToRun);
}

Description of the STAThread attribute

But I'm confused why you're using UI components in a web service at all. Can you explain a bit more about why you're trying to do this?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.