Questions tagged [openorb]

6 questions
3
votes
1 answer

openorb: How to publish IP in ior

I want to set particular ip in IOR file, I am doing it as below: props.put("iiop.publishIP", "auto"); props.put("iiop.port", "60003"); props.put("iiop.hostname", "165.100.10.1"); props.put("iiop.listenAddress", "0.0.0.0"); When I decode the…
coder
  • 109
  • 5
3
votes
3 answers

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 =…
Megasaur
  • 626
  • 8
  • 20
2
votes
0 answers

How to generate IOR with specific IP and Port in Java

I am debugging the server part of Corba code, I decoded the IOR generated, but the ip is not getting changed, when I change in orb_init(). Below is my piece of code: String[] args = new String[4]; args[0] = "-ORBInitialPort"; …
coder
  • 109
  • 5
2
votes
1 answer

CORBA: Trouble while attempting to configure and run OpenORB

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…
Yaneeve
  • 4,751
  • 10
  • 49
  • 87
0
votes
2 answers

openorb and jdk conflict in OSGI

I'm getting the bellow exception using openorb in osgi. I'm using openorb-1.3.1.jar and jdk1.6. I think both the openorb-1.3.1.jar and rt.jar in jdk is containing many duplicates which is causing the problem. For eg, the bellow error is happening…
0
votes
2 answers

Get the ClassNotFound exception when use corba within osgi

I want to encapsulate corba service in to osgi bundle. I am using karaf as osgi container, openorb as orb implementation and blueprint to register osgi service. But when I install my corba feature to karaf, always get ClassNotFound exception. the…