|
Hello.
We have developed a JavaBean that uses Corba
objects. Concretely, we use the next code lines:
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(new String[0],null); org.omg.CORBA.Object obj = orb.string_to_object(ior); First, we create an ORB object, and then we try to
get a new object through a file .ior.
When the execution reaches the second line, we
obtain the exception:
ERROR: org.omg.CORBA.BAD_PARAM: minor
code: 1398079489 completed: No
WHAT IS FAILING? We have probed this with Tomcat, and it
executes successfully. |
