How to do events over WCF
It would be nice to have a good example of a publish/subscribe model over WCF.
4 comments
-
Jeroen Soeters
commented
Thank you for posting that comment AFTER I build my own pub/sub framework for WCF.. ;)
-
Dennis van der Stelt
commented
What nServiceBus does, but than with WCF! :)
-
Jeroen Soeters
commented
It might be even better to throw in a little service bus goodness - using the event relay binding - in this example.
-
Jeroen Soeters
commented
I like the list-based publish subscribe example from the patterns and practices team (http://msdn.microsoft.com/en-us/library/ms752254.aspx). But what I miss is a good model to share an event between a group of subscribers. Say every subscriber has an ID he uses to subscribe with. After subscribing he only wants to receive events of that type triggered by other users using the same ID instead of ALL events of that type.