문제

Possible Duplicate:
What the .NET standard for remote method invocation?

What exactly is C# version of Java RMI?

I want to invoke the methods of client from the server, ping the client from server etc.

How this server and client communication can be done with c#?

Thanks.

도움이 되었습니까?

해결책

You have the choice between Remoting and WCF

Remoting is the oldest technology but is not deprecated and may be enough for you.

WCF is more recent and has more possibilities (for security, authentication, and message transports and protocols).

You can easily find tutorials for both solutions.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top