C#调用代码:
TcpChannel tc= new TcpChannel();
ChannelServices.RegisterChannel(tc);remoteObject = (MyRemotableObject)Activator.GetObject(typeof(MyRemotableObject), "tcp://localhost:8080/HelloWorld");textBox2.Text=   remoteObject.SetMessage(textBox1.Text);
DELPHI如何实现调用呀?