The class Client creates an instance of the Server object as a remote object to call a method of it.
class Client {
public static void main(String argv[]) {
Server_Proxy server = new Server_Proxy("horb://host.etl.go.jp:8444");
String result = server.greeting("World");
System.out.println(result);
}
}