Package org.omg.CORBA

Examples of org.omg.CORBA.Any.insert_short()


            any.insert_short(EITHER);
            byte[] taggedComponentData = codec.encode_value(any);
            info.add_ior_component(new TaggedComponent(TAG_INV_POLICY, taggedComponentData));
            // OTS Policy = ADAPTS
            any = ORB.init().create_any();
            any.insert_short(ADAPTS);
            taggedComponentData = codec.encode_value(any);
            info.add_ior_component(new TaggedComponent(TAG_OTS_POLICY, taggedComponentData));
        } catch (InvalidTypeForEncoding e) {
            throw new NestedRuntimeException("Exception during encoding", e);
        }
View Full Code Here


       
        Any otsAny = ORB.init().create_any();
        Any invAny = ORB.init().create_any();
       
        otsAny.insert_short(otsPolicyValue);
        invAny.insert_short(invPolicyValue);
       
        byte[] otsCompValue = null;
        byte[] invCompValue = null;                
        try {
            otsCompValue = codec.encode_value(otsAny);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.