Can I have two different clients listening to the same WCF callback and have them both receive the same data without having to do the processing twice?
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.
Not really – at least not directly. What you’re describing sounds a lot like the publish/subscribe pattern. A WCF service basically services one client and one client only, at any given time.
There are ways to do this in WCF 3.5 and better ones in WCF 4.0 – with or without Windows Azure’s .NET Services. There are also other tools and support for the publish/subscribe pattern.
Check out things like:
If you Google or Bing for "WCF Publish Subscribe", you’ll get a lot more hits – but those three should really get you started, I think.