Network programming and .NET - some advise

  • Thread starter Thread starter Krish
  • Start date Start date
K

Krish

This is my first attempt of network programming, I would like to
client to receive information from a server (another internal PC) in
the firm, so one
is a publisher and another is a subscriber. What exists in .NET that I
could
use to achieve this. I have seen some socket programming examples, but
would
really like to hear from you what would be a "clean" way to implement
this.

Really appreciate the help.
 
Krish,

Depending on the complexity of what you want to do, you might want to
consider using remoting over TCP/IP, which would allow you to have a server
that is running all the time, and take requests from subscribers.

Check out the section of the .NET framework documentation titled ".NET
Remoting Overview", located at (watch for line wrap):

http://msdn.microsoft.com/library/d...-us/cpguide/html/cpconNETRemotingOverview.asp

Hope this helps.
 
Back
Top