C#: Messaging in local network
- by Richard
Hi All,
I need to implement some form of communitcation mechanism in my application, to send Notifications/messages from one Application instance to all the others. This is a normal scenario where someone adds and item or deletes and item and you want to notify other users that this has happened.
The application runs on the Client and connects to a database on the local network. So its not like all clients access a server instance of the application. So from what I know I could use MessageQueues or some form of Database polling where I have a table that stores all the messages (not ideal).
Issue is I need to implement this very quickly, so sadly can't go very complex but need the quickest easiest solution.
thanks for the help!