Package org.jacorb.test.bugs.bugjac182

Source Code of org.jacorb.test.bugs.bugjac182.BugJac182TestServerRunner

package org.jacorb.test.bugs.bugjac182;

import java.lang.reflect.Constructor;
import org.omg.CORBA.ORB;
import org.omg.CORBA.Policy;
import org.omg.PortableServer.ImplicitActivationPolicyValue;
import org.omg.PortableServer.POA;
import org.omg.PortableServer.POAHelper;
import org.omg.PortableServer.Servant;

public class BugJac182TestServerRunner
{

    /**
     * <code>main</code> is reimplemented here so that we can start
     * the server with a child POA and use servant_to_id.
     *
     * @param args a <code>String[]</code> value
     */
    public static void main (String[] args) throws Exception
    {
        //init ORB
        ORB serverOrb = ORB.init( args, null );

        //init POA
        POA rootPoa =
            POAHelper.narrow( serverOrb.resolve_initial_references( "RootPOA" ));
        rootPoa.the_POAManager().activate();

        // create POA
        Policy policies[] = new Policy[2];
        policies[0] = rootPoa.create_id_uniqueness_policy(
                org.omg.PortableServer.IdUniquenessPolicyValue.MULTIPLE_ID);
        policies[1] = rootPoa.create_implicit_activation_policy(
                ImplicitActivationPolicyValue.IMPLICIT_ACTIVATION );

        POA poa = rootPoa.create_POA("childPOA1", rootPoa.the_POAManager(), policies);
        poa.the_POAManager().activate();

        String className = args[0];
        Class<?> servantClass = Class.forName (className);
        Constructor<?> ctor = servantClass.getConstructor(new Class[] {ORB.class});
        Servant servant = ( Servant ) ctor.newInstance(new Object[] {serverOrb});

        // Get the id
        byte[] oid = poa.servant_to_id (servant);

        // create the object reference
        org.omg.CORBA.Object obj = poa.id_to_reference (oid);

        System.out.println ("SERVER IOR: " + serverOrb.object_to_string(obj));
        System.out.flush();

        // wait for requests
        serverOrb.run();
    }
}
TOP

Related Classes of org.jacorb.test.bugs.bugjac182.BugJac182TestServerRunner

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.