You need to set ORB properties.
Not fammiliar with JacORB but Orbix case looks like:
Properties props = new Properties();
props.put("org.omg.CORBA.ORBClass", "IE.Iona.OrbixWeb.CORBA.ORB");
props.put("org.omg.CORBA.ORBSingletonClass", "IE.Iona.OrbixWeb.CORBA.singletonORB");
orb = ORB.init(args, props);
Anyway, check JacORB docs.
found this:
p.put("org.omg.CORBA.ORBClass", "org.jacorb.orb.ORB");
p.put("org.omg.CORBA.ORBSingletonClass", "org.jacorb.orb.ORBSingleton");
Message was edited by:
algr