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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.