我正在开发一个命令行客户端 (Java SE6),它现在需要与 Glassfish 2.1 服务器通信。建立此连接的代码是
try {
final InitialContext context = new InitialContext();
final String ejbName = GeneratorCancelledRemote.class.getName();
generatorCancelled = (GeneratorCancelledRemote) context.lookup(ejbName);
}
catch (Throwable t) {
System.err.println("--> Could not call server:");
t.printStackTrace(System.err);
runWithOutEJB = true;
}
我现在在没有运行服务器的情况下测试它,客户端(从 Eclipse 4.2 运行时)只是用
31.10.2012 10:40:09 com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl 警告:“IOP00410201:(COMM_FAILURE)连接失败:socketType:IIOP_CLEAR_TEXT;主机名:localhost;端口:3700” org.omg.CORBA.COMM_FAILURE:vmcid:SUN 次要代码:201 已完成:否 在 com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2783) 在 com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2804) 在 com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.(SocketOrChannelConnectionImpl.java:261) 在 com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.(SocketOrChannelConnectionImpl.java:274) 在 com.sun.corba.ee.impl.transport.SocketOrChannelContactInfoImpl.createConnection(SocketOrChannelContactInfoImpl.java:130) 在 com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.beginRequest(CorbaClientRequestDispatcherImpl.java:192) 在 com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaClientDelegateImpl.java:184) 在 com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:328) 在 org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112) 在 org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java:69) 在 com.sun.enterprise.naming.SerialContext.narrowProvider(SerialContext.java:134) 在 com.sun.enterprise.naming.SerialContext.getCachedProvider(SerialContext.java:259) 在 com.sun.enterprise.naming.SerialContext.getRemoteProvider(SerialContext.java:204) 在 com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:159) 在 com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:409) 在 javax.naming.InitialContext.lookup(InitialContext.java:392) 在 com.werkii.latex.generator.Generator.main(Generator.java:344) 引起:java.lang.RuntimeException:java.net.ConnectException:连接被拒绝:连接 在 com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:347) 在 com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.(SocketOrChannelConnectionImpl.java:244) ... 14 更多 引起:java.net.ConnectException:连接被拒绝:连接 在 sun.nio.ch.Net.connect(本机方法) 在 sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:532) 在 com.sun.corba.ee.impl.orbutil.ORBUtility.openSocketChannel(ORBUtility.java:105) 在 com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:332) ... 15 更多
现在可以(虽然我仍在开发中)它会爆炸,但它会反复执行此操作并且catch
永远不会达到该子句(即使我正在捕捉Throwable
) - 不会打印消息。
lookup
那么在我的程序中如何处理连接错误呢?