当前位置: 首页>>代码示例>>Java>>正文


Java ORB.connect方法代码示例

本文整理汇总了Java中com.sun.corba.se.spi.orb.ORB.connect方法的典型用法代码示例。如果您正苦于以下问题:Java ORB.connect方法的具体用法?Java ORB.connect怎么用?Java ORB.connect使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.corba.se.spi.orb.ORB的用法示例。


在下文中一共展示了ORB.connect方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: RepositoryImpl

import com.sun.corba.se.spi.orb.ORB; //导入方法依赖的package包/类
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);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:26,代码来源:RepositoryImpl.java

示例2: connectAndGetIOR

import com.sun.corba.se.spi.orb.ORB; //导入方法依赖的package包/类
/** 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 ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:31,代码来源:ORBUtility.java

示例3: ServerManagerImpl

import com.sun.corba.se.spi.orb.ORB; //导入方法依赖的package包/类
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 );
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:43,代码来源:ServerManagerImpl.java


注:本文中的com.sun.corba.se.spi.orb.ORB.connect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。