I have a .Net windows service running on a customers server. On the customers factory floor there a number of pc's running another .Net application. My server application is polling the db, and when certain changes have been made, I'd like to message the factory pc's to update.
The message being sent will be a simple string. What is the best way to implement this? I've been looking at WCF, but I'm not quite sure how to create a publisher/subscriber model using it.
Many thanks.