The RegisterChannel(IChannel, Boolean) method receives the IChannel interface from a channel object. Either the channel's ChannelName must be unique, or the channel must be anonymous. A channel is anonymous if the IChannel..::.ChannelName is set to either nullNothingnullptra null reference (Nothing in Visual Basic) or Empty by using the name configuration property.
You cannot register two channels with the same name in a AppDomain. By default, the name of a HttpChannel is "http" and the name of a TcpChannel is "tcp". Therefore, if you want to register two channels of the same type, you must specify a different name for one of them through configuration properties.
For more information about channel configuration properties, see Channel and Formatter Configuration Properties and [<topic://gnconchanneltemplate>].
If the ensureSecurity parameter is set to true, the remoting system determines whether the channel implements ISecurableChannel, and if so, enables encryption and digital signatures. An exception is thrown if the channel does not implement ISecurableChannel.
Note: |
|---|
Setting
ensureSecurity to true throws a RemotingException for TcpServerChannel on win98 (Since secure tcp channel is not supported on wi9x) , and for Http Server Channel on all platforms (Users need to host service in IIS if they want secure http channel).
|