C#: Messaging in local network

Posted by Richard on Stack Overflow See other posts from Stack Overflow or by Richard
Published on 2010-03-16T09:14:26Z Indexed on 2010/03/16 9:16 UTC
Read the original article Hit count: 356

Filed under:

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!

© Stack Overflow or respective owner

Related posts about c#