Vamsi
Vamsi

Reputation: 4253

How to implement Server less communication between various instances of an application in a network using C#

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

Answers (1)

Davide Piras
Davide Piras

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

Related Questions