In Wcf Integration, why there is a restriction to return enum only?
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.
My interpretation is that the integration is there to allow you to place messages on the Bus only. If this is expanded beyond enums, there is a temptation to return more complex data. This gets you into a Request/Response mode instead of an unidirectional, async messaging mode. If you need Request/Response then using standard WCF in a standard WCF host may be the best choice.