views:

50

answers:

1

We are using .net WCF with netMsmqBinding. Is the netMsmqBinding multi threaded? Is there a way to change the bindings to use single thread?

A: 

To process the messages in order add a servicebehavior attribute to your service and set the instancecontentmode to single and the concurrenycmode to single

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single , ConcurrencyMode = ConcurrencyMode.Single )]
public class Service : IService...
Miker169