tags:

views:

443

answers:

1

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?

+2  A: 

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.

Rob Windsor