I'm using WCF and netmsmqbinding and I am getting the following error message:

Contract requires TwoWay (either request-reply or duplex), but Binding 'NetMsmqBinding' doesn't support it or isn't configured properly to support it. Why?

My environment is window 2003 server. The wcf servcie is hosting as a window service. Thank you in advance for your help.

link|improve this question
feedback

2 Answers

You can only use OneWay operations with a NetMsmqBinding. You need to set the IsOneWay property of the OperationContract attribute to true.

Explanation here

link|improve this answer
feedback

Caveats about queued binding in WCF include that all service operations must be one-way because the default queued binding in WCF does not support duplex communication using queues.

To do not have this error you will need to change the OperationContract attribute. Example below:

[OperationContract(IsOneWay = true)]
void YourMethod(YourClass objectHere)

If you need to have two way operation you will need to use a different binding.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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