Клієнт – програмна конфігурація
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
//
Створюємо і реєструємо канал
TcpClientChannel
channel = new TcpClientChannel();
ChannelServices.RegisterChannel(channel,
false);
//
Реєструємо об'єкт RemotingConfiguration.RegisterWellKnownClientType(typeof(Multiplier), "tcp://localhost:8005/Multiplier.rem");