Package org.omg.CORBA.portable

Examples of org.omg.CORBA.portable.OutputStream.write_any()


        outAny.insert_short(testValue);
        assertEquals(testValue, outAny.extract_short());
        outAny.type ();

        OutputStream s = setup.getClientOrb().create_output_stream ();
        s.write_any (outAny);

        @SuppressWarnings("resource")
        InputStream i = s.create_input_stream ();
        Any inAny = i.read_any ();
        assertEquals(testValue, inAny.extract_short());
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.