Java Code Examples for com.sun.corba.se.spi.orb.ORB#connect()
The following examples show how to use
com.sun.corba.se.spi.orb.ORB#connect() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RepositoryImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
RepositoryImpl(ORB orb, File dbDir, boolean debug) { this.debug = debug ; this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ; // if databse does not exist, create it otherwise read it in File dbFile = new File(dbDir, "servers.db"); if (!dbFile.exists()) { db = new RepositoryDB(dbFile); db.flush(); } else { try { FileInputStream fis = new FileInputStream(dbFile); ObjectInputStream ois = new ObjectInputStream(fis); db = (RepositoryDB) ois.readObject(); ois.close(); } catch (Exception e) { throw wrapper.cannotReadRepositoryDb( e ) ; } } // export the repository orb.connect(this); }
Example 2
Source File: ORBUtility.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 3
Source File: RepositoryImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
RepositoryImpl(ORB orb, File dbDir, boolean debug) { this.debug = debug ; this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ; // if databse does not exist, create it otherwise read it in File dbFile = new File(dbDir, "servers.db"); if (!dbFile.exists()) { db = new RepositoryDB(dbFile); db.flush(); } else { try { FileInputStream fis = new FileInputStream(dbFile); ObjectInputStream ois = new ObjectInputStream(fis); db = (RepositoryDB) ois.readObject(); ois.close(); } catch (Exception e) { throw wrapper.cannotReadRepositoryDb( e ) ; } } // export the repository orb.connect(this); }
Example 4
Source File: ORBUtility.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 5
Source File: ORBUtility.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 6
Source File: RepositoryImpl.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
RepositoryImpl(ORB orb, File dbDir, boolean debug) { this.debug = debug ; this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ; // if databse does not exist, create it otherwise read it in File dbFile = new File(dbDir, "servers.db"); if (!dbFile.exists()) { db = new RepositoryDB(dbFile); db.flush(); } else { try { FileInputStream fis = new FileInputStream(dbFile); ObjectInputStream ois = new ObjectInputStream(fis); db = (RepositoryDB) ois.readObject(); ois.close(); } catch (Exception e) { throw wrapper.cannotReadRepositoryDb( e ) ; } } // export the repository orb.connect(this); }
Example 7
Source File: ORBUtility.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 8
Source File: ORBUtility.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 9
Source File: RepositoryImpl.java From JDKSourceCode1.8 with MIT License | 6 votes |
RepositoryImpl(ORB orb, File dbDir, boolean debug) { this.debug = debug ; this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ; // if databse does not exist, create it otherwise read it in File dbFile = new File(dbDir, "servers.db"); if (!dbFile.exists()) { db = new RepositoryDB(dbFile); db.flush(); } else { try { FileInputStream fis = new FileInputStream(dbFile); ObjectInputStream ois = new ObjectInputStream(fis); db = (RepositoryDB) ois.readObject(); ois.close(); } catch (Exception e) { throw wrapper.cannotReadRepositoryDb( e ) ; } } // export the repository orb.connect(this); }
Example 10
Source File: ORBUtility.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 11
Source File: ORBUtility.java From JDKSourceCode1.8 with MIT License | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 12
Source File: RepositoryImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
RepositoryImpl(ORB orb, File dbDir, boolean debug) { this.debug = debug ; this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ; // if databse does not exist, create it otherwise read it in File dbFile = new File(dbDir, "servers.db"); if (!dbFile.exists()) { db = new RepositoryDB(dbFile); db.flush(); } else { try { FileInputStream fis = new FileInputStream(dbFile); ObjectInputStream ois = new ObjectInputStream(fis); db = (RepositoryDB) ois.readObject(); ois.close(); } catch (Exception e) { throw wrapper.cannotReadRepositoryDb( e ) ; } } // export the repository orb.connect(this); }
Example 13
Source File: ORBUtility.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 14
Source File: ORBUtility.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** Obtains an IOR for the object reference obj, first connecting it to * the ORB if necessary. * @return IOR the IOR that represents this objref. This will * never be null. * @exception BAD_OPERATION if the object could not be connected, * if a connection attempt was needed. * @exception BAD_PARAM if obj is a local object, or else was * created by a foreign ORB. */ public static IOR connectAndGetIOR( ORB orb, org.omg.CORBA.Object obj ) { IOR result ; try { result = getIOR( obj ) ; } catch (BAD_OPERATION bop) { if (StubAdapter.isStub(obj)) { try { StubAdapter.connect( obj, orb ) ; } catch (java.rmi.RemoteException exc) { throw wrapper.connectingServant( exc ) ; } } else { orb.connect( obj ) ; } result = getIOR( obj ) ; } return result ; }
Example 15
Source File: RepositoryImpl.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
RepositoryImpl(ORB orb, File dbDir, boolean debug) { this.debug = debug ; this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ; // if databse does not exist, create it otherwise read it in File dbFile = new File(dbDir, "servers.db"); if (!dbFile.exists()) { db = new RepositoryDB(dbFile); db.flush(); } else { try { FileInputStream fis = new FileInputStream(dbFile); ObjectInputStream ois = new ObjectInputStream(fis); db = (RepositoryDB) ois.readObject(); ois.close(); } catch (Exception e) { throw wrapper.cannotReadRepositoryDb( e ) ; } } // export the repository orb.connect(this); }
Example 16
Source File: ServerManagerImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
ServerManagerImpl(ORB orb, CorbaTransportManager transportManager, Repository repository, String dbDirName, boolean debug) { this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_ACTIVATOR ) ; this.transportManager = transportManager; // REVISIT - NOT USED. this.repository = repository; this.dbDirName = dbDirName; this.debug = debug ; LegacyServerSocketEndPointInfo endpoint = orb.getLegacyServerSocketManager() .legacyGetEndpoint(LegacyServerSocketEndPointInfo.BOOT_NAMING); initialPort = ((SocketOrChannelAcceptor)endpoint) .getServerSocket().getLocalPort(); serverTable = new HashMap(256); // The ServerStartupDelay is the delay added after the Server registers // end point information. This is to allow the server to completely // initialize after ORB is instantiated. serverStartupDelay = ORBConstants.DEFAULT_SERVER_STARTUP_DELAY; String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY); if( delay != null ) { try { serverStartupDelay = Integer.parseInt( delay ); } catch ( Exception e ) { // Just use the default 1000 milliseconds as the default } } Class cls = orb.getORBData( ).getBadServerIdHandler(); if( cls == null ) { orb.setBadServerIdHandler( this ); } else { orb.initBadServerIdHandler() ; } orb.connect(this); ProcessMonitorThread.start( serverTable ); }
Example 17
Source File: ServerManagerImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
ServerManagerImpl(ORB orb, CorbaTransportManager transportManager, Repository repository, String dbDirName, boolean debug) { this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_ACTIVATOR ) ; this.transportManager = transportManager; // REVISIT - NOT USED. this.repository = repository; this.dbDirName = dbDirName; this.debug = debug ; LegacyServerSocketEndPointInfo endpoint = orb.getLegacyServerSocketManager() .legacyGetEndpoint(LegacyServerSocketEndPointInfo.BOOT_NAMING); initialPort = ((SocketOrChannelAcceptor)endpoint) .getServerSocket().getLocalPort(); serverTable = new HashMap(256); // The ServerStartupDelay is the delay added after the Server registers // end point information. This is to allow the server to completely // initialize after ORB is instantiated. serverStartupDelay = ORBConstants.DEFAULT_SERVER_STARTUP_DELAY; String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY); if( delay != null ) { try { serverStartupDelay = Integer.parseInt( delay ); } catch ( Exception e ) { // Just use the default 1000 milliseconds as the default } } Class cls = orb.getORBData( ).getBadServerIdHandler(); if( cls == null ) { orb.setBadServerIdHandler( this ); } else { orb.initBadServerIdHandler() ; } orb.connect(this); ProcessMonitorThread.start( serverTable ); }
Example 18
Source File: ServerManagerImpl.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
ServerManagerImpl(ORB orb, CorbaTransportManager transportManager, Repository repository, String dbDirName, boolean debug) { this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_ACTIVATOR ) ; this.transportManager = transportManager; // REVISIT - NOT USED. this.repository = repository; this.dbDirName = dbDirName; this.debug = debug ; LegacyServerSocketEndPointInfo endpoint = orb.getLegacyServerSocketManager() .legacyGetEndpoint(LegacyServerSocketEndPointInfo.BOOT_NAMING); initialPort = ((SocketOrChannelAcceptor)endpoint) .getServerSocket().getLocalPort(); serverTable = new HashMap(256); // The ServerStartupDelay is the delay added after the Server registers // end point information. This is to allow the server to completely // initialize after ORB is instantiated. serverStartupDelay = ORBConstants.DEFAULT_SERVER_STARTUP_DELAY; String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY); if( delay != null ) { try { serverStartupDelay = Integer.parseInt( delay ); } catch ( Exception e ) { // Just use the default 1000 milliseconds as the default } } Class cls = orb.getORBData( ).getBadServerIdHandler(); if( cls == null ) { orb.setBadServerIdHandler( this ); } else { orb.initBadServerIdHandler() ; } orb.connect(this); ProcessMonitorThread.start( serverTable ); }
Example 19
Source File: ServerManagerImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
ServerManagerImpl(ORB orb, CorbaTransportManager transportManager, Repository repository, String dbDirName, boolean debug) { this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_ACTIVATOR ) ; this.transportManager = transportManager; // REVISIT - NOT USED. this.repository = repository; this.dbDirName = dbDirName; this.debug = debug ; LegacyServerSocketEndPointInfo endpoint = orb.getLegacyServerSocketManager() .legacyGetEndpoint(LegacyServerSocketEndPointInfo.BOOT_NAMING); initialPort = ((SocketOrChannelAcceptor)endpoint) .getServerSocket().getLocalPort(); serverTable = new HashMap(256); // The ServerStartupDelay is the delay added after the Server registers // end point information. This is to allow the server to completely // initialize after ORB is instantiated. serverStartupDelay = ORBConstants.DEFAULT_SERVER_STARTUP_DELAY; String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY); if( delay != null ) { try { serverStartupDelay = Integer.parseInt( delay ); } catch ( Exception e ) { // Just use the default 1000 milliseconds as the default } } Class cls = orb.getORBData( ).getBadServerIdHandler(); if( cls == null ) { orb.setBadServerIdHandler( this ); } else { orb.initBadServerIdHandler() ; } orb.connect(this); ProcessMonitorThread.start( serverTable ); }
Example 20
Source File: ServerManagerImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
ServerManagerImpl(ORB orb, CorbaTransportManager transportManager, Repository repository, String dbDirName, boolean debug) { this.orb = orb; wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_ACTIVATOR ) ; this.transportManager = transportManager; // REVISIT - NOT USED. this.repository = repository; this.dbDirName = dbDirName; this.debug = debug ; LegacyServerSocketEndPointInfo endpoint = orb.getLegacyServerSocketManager() .legacyGetEndpoint(LegacyServerSocketEndPointInfo.BOOT_NAMING); initialPort = ((SocketOrChannelAcceptor)endpoint) .getServerSocket().getLocalPort(); serverTable = new HashMap(256); // The ServerStartupDelay is the delay added after the Server registers // end point information. This is to allow the server to completely // initialize after ORB is instantiated. serverStartupDelay = ORBConstants.DEFAULT_SERVER_STARTUP_DELAY; String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY); if( delay != null ) { try { serverStartupDelay = Integer.parseInt( delay ); } catch ( Exception e ) { // Just use the default 1000 milliseconds as the default } } Class cls = orb.getORBData( ).getBadServerIdHandler(); if( cls == null ) { orb.setBadServerIdHandler( this ); } else { orb.initBadServerIdHandler() ; } orb.connect(this); ProcessMonitorThread.start( serverTable ); }