I'd like to use WCF+MSMQ(netMsmqBinding) and I was wondering if I'd need to install anything MSMQ related at the client side, other than my client application and the .NET framework of-course.

link|improve this question

62% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Yes you need MSMQ installed on both the service and the consumer sides.

Edit: just to embellish the answer - the reason you need MSMQ installed is that when you send a message to a queue on another machine, what is really happening is that you are sending a message to the queue manager on the senders machine, which is sending a message to the queue manager on the receivers machine, which is sending a message to the queue.

Each "send" is a single logical action and is what gives MSMQ durability.

link|improve this answer
2  
MSMQ, like TCP, is a transport protocol. Both ends need to be able to talk the same protocol to communicate. – John Breakwell Sep 7 '11 at 8:18
feedback

Your Answer

 
or
required, but never shown

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