IPC in .NET

  • Thread starter Thread starter adrin
  • Start date Start date
A

adrin

Hello,
Could anybody tell me what are IPC mechanisms that .NET supports at
present?(and what improvements were made in different framework versions)?

Is IPC support windows dependent or is it designed to be more or less
portable(does Mono support IPC?)

tia
 
so WCF is intended to replace .NET Remoting in some way?

WCF is intended to provide a unified framework for messaging; it can,
indeed, be used as a replacement for remoting or web services - but
one of the key ideas is that the code you write doesn't care about
this... the "how to connect" is usually managed via configuration
files, making it theoretically possible to switch between transports
without changing the code. Of course, LOLA has something to say about
this, but it does a reasonable job of making things more maneagable.

Marc
 
Back
Top