Kobojunkie
Kobojunkie

Reputation: 6555

C# Remote Method Invocation (RMI)

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

Answers (3)

62316e
62316e

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

SLaks
SLaks

Reputation: 888185

You're looking for .Net Remoting. You may also want to look into WCF.

Upvotes: 14

JMarsch
JMarsch

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

Related Questions