Examples of GreetingsServant


Examples of gnu.testlet.org.omg.CORBA_2_3.ORB.Valtype.GreetingsServant

        // Create the test 1 servant and register it with the ORB.
        comServant tester = new comServant();
        orb.connect(tester);

        // Create the test 2 servant and register it with the ORB.
        GreetingsServant tester2 = new GreetingsServant();
        orb.connect(tester2);

        // Storing the IOR references.
        IORs [ 0 ] = orb.object_to_string(tester);
        IORs [ 1 ] = orb.object_to_string(tester2);
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.