how can I know which orb im using?

Hello allim trying to move from javaIDL to jacORB in my application I point my class path to the jacORB.jar and it is first in the list how can I be sure im using jacORB and not javaIDL ? Because the declaration is the same in the code. (import
[299 byte] By [Meirya] at [2007-10-3 4:46:10]
# 1

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

algra at 2007-7-14 22:50:31 > top of Java-index,Core,Core APIs...