Reputation: 6555
I need to write an RMI server and client in C# and was sort of confused about what this really is considering most of the posts I have read online on the subject have been Java-related. What exactly is C#'s version of Java RMI? Thanks in advance!
Upvotes: 12
Views: 25518
Reputation: 225
You can use anything except WCF if you want fast and lightweight application without writing tons of xml or hours to configure calculator.
Upvotes: -1
Reputation: 888185
You're looking for .Net Remoting. You may also want to look into WCF.
Upvotes: 14
Reputation: 21751
If you are using .net 3.0 or better, look into WCF (Windows Communication Foundation). If you are using .net 2.0 or older, look at .Net Remoting.
Upvotes: 4