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?"); } } }
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5