.NET Remoting :Channels

The .NET Remoting infrastructure provides a mechanism by which a
stream of bytes is sent from one point to the other (client to server
etc.). This is achieved via a channel. Strictly speaking, it is a
class that implements the IChannel interface. There are two
pre-defined .NET Remoting channels existing in
System.Runtime.Remoting.Channels, the TcpChannel and the HttpChannel.
To use the TcpChannel, the server must instantiate and register the
TcpServerChannel class, and the client, the TcpClientChannel class.

No comments:

Post a Comment