"IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: 127.0.0.1; port: 3700"
org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2690)
at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2711)
at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.
at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.
I come across this problem recently. After detail investigation, the problem is due of the Croba Connection on Linux Server resolve it's own ip address using the DNS name "localhost". The default Linux installation , /etc/host has the following line:
127.0.0.1 localhost
Then the client try to connect the server again using 127.0.0.1. The problem could be fixed by just modify the /etc/hosts file
{real ip address} localhost
2 comments:
Oh! Thank you very much, I was look for this solution.
Real ip address means server ipaddress or local ipaddress?
Post a Comment