import java.io.*; import org.omg.CORBA.*; public class client { public static void main(String args[]) { // this apparently is the syntax that's required. String url = new String("corbaloc::127.0.0.1:1060/StandardImplName/helloPOA/terriImpl"); //String url = new String("corbaloc::127.0.0.1:1060/terriImpl"); ORB orb = ORB.init(args, null); org.omg.CORBA.Object obj = orb.string_to_object(url); if (obj == null) { System.out.println("string to object returned nul"); return; } hello helloObj = helloHelper.narrow(obj); helloObj.say_hello("to me"); } };