remoting

  • Thread starter Thread starter Leon Habinsky
  • Start date Start date
L

Leon Habinsky

Hi all.

I have a situation when I will need multiple clients connected to a server.
The server will periodically send some XML data to the clients. What would
be the best way for me to accomplish this? I can use either Sockets or .NET
Remoting. Both the client and the server will be written in .NET 2.0.

Thank you.

Leon.
 
Leon,
you are talking about a "push" model, so sockets would probably be your best
bet.
You could consider multicast UDP with each client having a subscribing UDP
socket listener.
Peter
 
Back
Top