Should I use Named Pipes, or .NET Remoting to communicate with a running process on my machine?
Shared memory is the fastest form of interprocess communication. The main advantage of shared memory is that the copying of message data is eliminated.
Explanation: Message Passing system allows processes to communicate with each other without sharing the same address space.
There are two primary models of interprocess communication: shared memory and. message passing.
WCF is the best choice. It supports a number of different transport mechanisms (including Named Pipes) and can be completely configuration driven. I would highly recommend that you take a look at WCF.
Here is a blog that does a WCF vs Remoting performance comparison.
A quote from the blog:
The WCF and .NET Remoting are really comparable in performance. The differences are so small (measuring client latency) that it does not matter which one is a bit faster. WCF though has much better server throughput than .NET Remoting. If I would start completely new project I would chose the WCF. Anyway the WCF does much more than Remoting and for all those features I love it.
MSDN Section for WCF
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With