Package org.omg.CORBA

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


        _any.insert_any(testPerson_);

        runEvaluation(_any, "$.first_name == 'Firstname'");

        Any _any2 = getORB().create_any();
        _any2.insert_any(_any);

        runEvaluation(_any, "$.first_name == 'Firstname'");

        runEvaluation(_any, "$ == 'FirstName'", "FALSE");
View Full Code Here


    {
        Any testValue = setup.getClientOrb().create_any();
        testValue.insert_string("foo");

        Any outAny = setup.getClientOrb().create_any();
        outAny.insert_any(testValue);
        assertEquals(testValue, outAny.extract_any());

        Any inAny = server.bounce_any(outAny);

        assertEquals(testValue, inAny.extract_any());
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.