关键的两句
Properties prop = new Properties();
prop.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");
prop.put(javax.naming.Context.PROVIDER_URL, "iiop://127.0.0.1:3700");
ctx = new InitialContext(prop);
Object obj = ctx.lookup(MyJNDIname);
ServerMngHome home = (MyHome) PortableRemoteObject.narrow(obj, MyMngHome.class);
myIntf = home.create();
ctx.close();