Reputation: 4253
I want to know the best way to implement a system where 2 or more instances of an application deployed in different systems in a network communicate with each other without using any central server(either db or on application acting as server).
I am trying to develop an IP Messenger type application in C#.net.
Upvotes: 2
Views: 1701
Reputation: 44605
you can use WCF and netTCP binding, see here for more information:
Peer-to-Peer Programming with WCF and .NET Framework 3.5
Upvotes: 2