本文整理汇总了Java中com.sun.corba.se.impl.logging.ActivationSystemException类的典型用法代码示例。如果您正苦于以下问题:Java ActivationSystemException类的具体用法?Java ActivationSystemException怎么用?Java ActivationSystemException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ActivationSystemException类属于com.sun.corba.se.impl.logging包,在下文中一共展示了ActivationSystemException类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: RepositoryImpl
import com.sun.corba.se.impl.logging.ActivationSystemException; //导入依赖的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: ServerManagerImpl
import com.sun.corba.se.impl.logging.ActivationSystemException; //导入依赖的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
示例3: ServerTableEntry
import com.sun.corba.se.impl.logging.ActivationSystemException; //导入依赖的package包/类
ServerTableEntry( ActivationSystemException wrapper,
int serverId, ServerDef serverDef, int initialPort,
String dbDirName, boolean verify, boolean debug )
{
this.wrapper = wrapper ;
this.serverId = serverId;
this.serverDef = serverDef;
this.debug = debug ;
// create a HashMap with capacity 255
// Since all methods are synchronized, we don't need any
// additional synchronization mechanisms
orbAndPortInfo = new HashMap(255);
activateRetryCount = 0;
state = ACTIVATING;
// compute the activation command
activationCmd =
// add path to the java vm
javaHome + fileSep + "bin" + fileSep + "java " +
// add any arguments to the server Java VM
serverDef.serverVmArgs + " " +
// add ORB properties
"-Dioser=" + System.getProperty( "ioser" ) + " " +
"-D" + ORBConstants.INITIAL_PORT_PROPERTY + "=" + initialPort + " " +
"-D" + ORBConstants.DB_DIR_PROPERTY + "=" + dbDirName + " " +
"-D" + ORBConstants.ACTIVATED_PROPERTY + "=true " +
"-D" + ORBConstants.SERVER_ID_PROPERTY + "=" + serverId + " " +
"-D" + ORBConstants.SERVER_NAME_PROPERTY + "=" + serverDef.serverName + " " +
// we need to pass in the verify flag, so that the server is not
// launched, when we try to validate its definition during registration
// into the RepositoryImpl
(verify ? "-D" + ORBConstants.SERVER_DEF_VERIFY_PROPERTY + "=true ": "") +
// add classpath to the server
"-classpath " + classPath +
(serverDef.serverClassPath.equals("") == true ? "" : pathSep) +
serverDef.serverClassPath +
// add server class name and arguments
" com.sun.corba.se.impl.activation.ServerMain " + serverDef.serverArgs
// Add the debug flag, if any
+ (debug ? " -debug" : "") ;
if (debug) System.out.println(
"ServerTableEntry constructed with activation command " +
activationCmd);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:54,代码来源:ServerTableEntry.java
注:本文中的com.sun.corba.se.impl.logging.ActivationSystemException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论