Pregunta

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.

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top