What is the easiest way to get RPC in .NET? I see that there are .NET Remoting and WCF, and according to Wikipedia, WCF is the successor to .NET Remoting.
So far, I have only tried removing things that seem pretty simple - so far I have not encountered any application speed problem. Is .NET removal really the best way to get RPC to work, or should I have a peek at WCF (since will remote .NET start stop in favor of this?)? I only need to communicate with already known objects written in C #, so I do not need any of these XML / SOAP /, etc. transport format. The target application is intended for distribution over the network and only communicates with the instances themselves. In this context, I just want to connect to an object somewhere without having problems with protocol level issues.
source share