I want to communicate between two applications or winforms in C# using clients and server its like i want a server continiously listening to incoming messages from a client or clients and when the msg is received i want to reply back to the client that sent the information for processing can any one help with code example
Sounds like a good case for WCF using netTcpBinding in an intranet environment! :-)
Check out these intros to WCF:
- Getting started with WCF
- WCF Templates and Tools
- WCF Developer Center
- WCF Getting Started - Videos, Screencasts, Whitepapers
There's an especially good series of screencasts with Aaron Skonnard (also available from the WCF Getting Started section) which explains step by step and in easy portions how to get up and running with your first adventures in WCF! :-)
Also, WCF does offer specific support for peer-to-peer networking, e.g. discovery and establishing communications between sibling nodes - see some articles on that topic here:
- Peer-to-Peer Programming with WCF
- Building a really simple WCF P2P application
- Peer-to-peer using WCF's netPeerTcpBinding
- Connect Smart Client Applications with WCF (PDF)
Compared to a "hand-crafted" solution based on sockets, WCF gives you a lot of ready-made plumbing code which you don't have to worry about - security, reliability, message encryption, transaction support, and much more. Why do that all yourself, if you can just use it ready-made?
Marc