openorb

CORBA: Trouble while attempting to configure and run OpenORB

Hi all, I am writing a simulator for a CORBA client, that is I am simulating a CORBA server. A requirement of the CORBA server is that it register a certain object with the CORBA NameService. I have somehow stumbled across OpenORB. I have downloaded all its binary zip archives and have extracted them all to a single directory- %TCOO...

Attempting to connect to a CORBA Service using corbaloc url

String[] orbargs= {}; org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(orbargs, null); org.omg.CORBA.Object cobj = orb.string_to_object("corbaloc:iiop:10.1.1.200:6969/OurServiceHelper"); _OurServiceHelper cpsh = _OurServiceHelperHelper.narrow(cobj); // Get's stuck cpsh.ourMethod(); That narrow just hangs. My service ...