What's the right way to communicate between 2 or more .Net applications running on a same computer w

Posted by Ivan on Stack Overflow See other posts from Stack Overflow or by Ivan
Published on 2010-05-04T15:31:00Z Indexed on 2010/05/04 16:38 UTC
Read the original article Hit count: 294

Filed under:
|

If my applications run on a same computer or even on different computers in a same LAN and need intense and quick communication, it seems illogical for me to use text-encoded web services and HTTP. I could possibly use IP/TCP/UDP sockets and invent my own protocols, but believe there is a standard way for .Net applications to send/receive object instances (and, maybe, even sharing an object by reference?). Can you tell me what's that standard way? I am only interested in .Net Framework 4 applications and don't need to support legacy frameworks.

© Stack Overflow or respective owner

Related posts about c#

Related posts about interop