Package org.jacorb.orb

Examples of org.jacorb.orb.ORB


  extends org.omg.CORBA.LocalObject
  implements ORBInitializer
{
    public void post_init(ORBInitInfo info)
    {
        final ORB orb = ((org.jacorb.orb.portableInterceptor.ORBInitInfoImpl) info).getORB();
        final Logger logger = orb.getConfiguration().getLogger("org.jacorb.interceptors.ior_init");

        try
        {
            Encoding encoding = new Encoding(ENCODING_CDR_ENCAPS.value,
                                             (byte) 1, (byte) 0);
View Full Code Here


     *
     * @param info the info object.
     */
    public void post_init(ORBInitInfo info)
    {
        final ORB orb = ((org.jacorb.orb.portableInterceptor.ORBInitInfoImpl) info).getORB();
        final Configuration config = orb.getConfiguration();
        final Logger logger = config.getLogger("org.jacorb.interceptors.ior_init");

        try
        {
            int giop_minor =
View Full Code Here

    protected abstract DefaultCurrentImpl getCurrentImpl();

    public final void pre_init(ORBInitInfo info)
    {

        ORB orb = ((org.jacorb.orb.portableInterceptor.ORBInitInfoImpl) info).getORB ();
        logger_ = orb.getConfiguration().getLogger("jacorb.transport");
        DefaultCurrentImpl impl = getCurrentImpl();
        try {
            impl.configure(orb.getConfiguration ());
            info.register_initial_reference (getName(), impl);
            logger_.info ("Registered initial reference \""+getName ()+"\" for "+impl.getClass().getName());
        }
        catch (ConfigurationException e) {
            e.printStackTrace ();
        }
        catch (InvalidName e) {
            e.printStackTrace ();
        }
               
        // Chain-in our implementation as a listener to the Transport events
        orb.getTransportManager ().addTransportListener (impl);
    }   
View Full Code Here

     */
    public void post_init(ORBInitInfo info)
    {
        try
        {
            ORB orb = ((org.jacorb.orb.portableInterceptor.ORBInitInfoImpl)info).getORB();
            Logger logger =
              ((org.jacorb.orb.ORB)orb).getConfiguration()
                                       .getLogger("jacorb.tx_service");
            slot_id = info.allocate_slot_id();
           
View Full Code Here

            return filename;
        }
        else
        {
            String serverId = "jacorb"; // reasonable default
            ORB orb = config.getORB();
            if (orb != null) serverId = orb.getServerIdString();
            String implName = config.getAttribute ("jacorb.implname", serverId);
            if (filename.endsWith ("$implname"))
            {
                return filename.substring (0, filename.length()-9)
                       + implName + ".log";
View Full Code Here

            System.exit(1);
        }

        try
        {
            ORB orb = (ORB) org.omg.CORBA.ORB.init( args, null );
            org.omg.CORBA.Repository ir =
                org.omg.CORBA.RepositoryHelper.narrow( orb.resolve_initial_references( "InterfaceRepository"));

            Logger logger = orb.getConfiguration().getLogger("jacorb.ir");

            if( ir == null )
            {
                System.out.println( "Could not find IR.");
                System.exit(1);
View Full Code Here

    }

    public static void main(String[] args)
    {
        String [] noarg = new String[]{};
        ORB orb = (org.jacorb.orb.ORB)ORB.init(noarg,null);
        for( int i = 0; i < args.length; i++ )
        {
            System.out.println( new CorbaLoc(orb, args[i] ).toString());
        }
    }
View Full Code Here

            System.exit(1);
        }

        try
        {
            ORB orb = (ORB) org.omg.CORBA.ORB.init( args, null );
            org.omg.CORBA.Repository ir =
                org.omg.CORBA.RepositoryHelper.narrow( orb.resolve_initial_references( "InterfaceRepository"));

            Logger logger = orb.getConfiguration().getNamedLogger("jacorb.ir");

            if( ir == null )
            {
                System.out.println( "Could not find IR.");
                System.exit(1);
View Full Code Here

    }

    public static void main(String[] args)
    {
        String [] noarg = new String[]{};
        ORB orb = (org.jacorb.orb.ORB)ORB.init(noarg,null);
        for( int i = 0; i < args.length; i++ )
        {
            System.out.println( new CorbaLoc(orb, args[i] ).toString());
        }
    }
View Full Code Here

  extends org.omg.CORBA.LocalObject
  implements ORBInitializer
{
    public void post_init(ORBInitInfo info)
    {
        final ORB orb = ((org.jacorb.orb.portableInterceptor.ORBInitInfoImpl) info).getORB();
        final Logger logger = orb.getConfiguration().getLogger("org.jacorb.interceptors.ior_init");

        try
        {
            Encoding encoding = new Encoding(ENCODING_CDR_ENCAPS.value,
                                             (byte) 1, (byte) 0);
View Full Code Here

TOP

Related Classes of org.jacorb.orb.ORB

Copyright © 2018 www.massapicom. 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.