Channel's??
-
I don't get Channel's (TCPChannel, HTTPChannel), is it just a new way of doing Client Server Applications???? Could some one shead some light on this for me... thanks
TcpChannel and HttpChannel are used for .NET framework's Remoting part. Remoting can be said to be one way of building client server apps, yes. Basically it's a mechanism for client and server to communicate. And they communicate through the channels (tcp or http) with messages passing through various sinks that can be used to encrypt/decrypt or processed in some other way.
-
TcpChannel and HttpChannel are used for .NET framework's Remoting part. Remoting can be said to be one way of building client server apps, yes. Basically it's a mechanism for client and server to communicate. And they communicate through the channels (tcp or http) with messages passing through various sinks that can be used to encrypt/decrypt or processed in some other way.