Question

I'm trying to grok the MSMQ binding in WCF and wanted to know how it's different than the configuration for BasicHttp or WsHttp?

Was it helpful?

Solution

The biggest difference is that requests to the service have to be one-way (fire and forget) because there's no guarantee that they will be handled on the other end. Another obvious difference is that you need to ensure the queue(s) are configured before use.

Check out 'Queuing in WCF' on MSDN for more information.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top