本文整理汇总了Java中com.sun.corba.se.spi.legacy.connection.GetEndPointInfoAgainException类的典型用法代码示例。如果您正苦于以下问题:Java GetEndPointInfoAgainException类的具体用法?Java GetEndPointInfoAgainException怎么用?Java GetEndPointInfoAgainException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
GetEndPointInfoAgainException类属于com.sun.corba.se.spi.legacy.connection包,在下文中一共展示了GetEndPointInfoAgainException类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createSocket
import com.sun.corba.se.spi.legacy.connection.GetEndPointInfoAgainException; //导入依赖的package包/类
public Socket createSocket(SocketInfo socketInfo)
throws
IOException,
GetEndPointInfoAgainException
{
Socket socket;
if (orb.getORBData().acceptorSocketType().equals(ORBConstants.SOCKETCHANNEL)) {
InetSocketAddress address =
new InetSocketAddress(socketInfo.getHost(),
socketInfo.getPort());
SocketChannel socketChannel = SocketChannel.open(address);
socket = socketChannel.socket();
} else {
socket = new Socket(socketInfo.getHost(),
socketInfo.getPort());
}
// REVISIT - this is done in SocketOrChannelConnectionImpl
try {
socket.setTcpNoDelay(true);
} catch (Exception e) {
;
}
return socket;
}
示例2: reportException
import com.sun.corba.se.spi.legacy.connection.GetEndPointInfoAgainException; //导入依赖的package包/类
public boolean reportException(ContactInfo contactInfo,
RuntimeException ex)
{
this.failureContactInfo = (CorbaContactInfo)contactInfo;
this.failureException = ex;
if (ex instanceof org.omg.CORBA.COMM_FAILURE) {
if (ex.getCause() instanceof GetEndPointInfoAgainException) {
socketInfoCookie =
((GetEndPointInfoAgainException) ex.getCause())
.getEndPointInfo();
return true;
}
SystemException se = (SystemException) ex;
if (se.completed == CompletionStatus.COMPLETED_NO) {
if (contactInfoList.getEffectiveTargetIOR() !=
contactInfoList.getTargetIOR())
{
// retry from root ior
contactInfoList.setEffectiveTargetIOR(
contactInfoList.getTargetIOR());
return true;
}
}
}
return false;
}