Properties properties = new Properties();
properties.put("jacorb.interop.sun", "on");
ORB jacorborb = org.omg.CORBA.ORB.init (new String[]{}, properties);
CDRInputStream in = new CDRInputStream(jacorborb, result);
Something s = (Something)in.read_value();
System.out.println("### the value is : " + s.value + "\nthe number is " + s.number);
foreignorb.shutdown(true);
jacorborb.shutdown(true);