home *** CD-ROM | disk | FTP | other *** search
- using System;
- using System.Runtime.Remoting;
- using HelloService;
-
- public class SimpleHello
- {
- public static void Main(String[] args)
- {
- String name = "Bill";
- RemotingServices.ConfigureRemoting("MyHello.cfg");
- Hello hello = new Hello();
- String result = hello.HelloMethod(name);
- Console.WriteLine("Hello.HelloMethod returned: " + result);
- }
- }
-