Torna al Thread
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Remoting;
namespace RemoteClient
{
class Program
{
static void Main(string[] args)
{
RemotingConfiguration.RegisterWellKnownClientType(typeof(MyRemotableType.MyRemotableType), "http://localhost:1234/RemotingTest.soap");
MyRemotableType.MyRemotableType t = new MyRemotableType.MyRemotableType();
t.write("Ciao!");
t.write("Come va?");
}
}
}