2012-12-15 16 views
3

我是corba的新手,並且正在使用eclipse ide來運行它。每當正在運行的服務器的以下錯誤消息來GIOP錯誤消息

Dec 15, 2012 9:17:18 AM com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase 
readGIOPHeader WARNING: "IOP00710220: (INTERNAL) Error in GIOP magic" org.omg.CORBA.INTERNAL: 
vmcid: SUN minor code: 220 completed: Maybe 
at com.sun.corba.se.impl.logging.ORBUtilSystemException.giopMagicError(Unknown Source) 
at com.sun.corba.se.impl.logging.ORBUtilSystemException.giopMagicError(Unknown Source) 
at com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase.readGIOPHeader(Unknown Source) 
at com.sun.corba.se.impl.transport.CorbaContactInfoBase.createMessageMediator(Unknown Source) 
at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.readBits(Unknown Source) 
at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.handleEvent(Unknown Source) 
at com.sun.corba.se.impl.transport.SelectorImpl.run(Unknown Source) 
org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 208 completed: Maybe 
at com.sun.corba.se.impl.logging.ORBUtilSystemException.connectionAbort(Unknown Source) 
at com.sun.corba.se.impl.logging.ORBUtilSystemException.connectionAbort(Unknown Source) 
at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.readBits(Unknown Source) 
at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.handleEvent(Unknown Source) 
at com.sun.corba.se.impl.transport.SelectorImpl.run(Unknown Source) 
Caused by: org.omg.CORBA.INTERNAL: vmcid: SUN minor code: 220 completed: Maybe 
at com.sun.corba.se.impl.logging.ORBUtilSystemException.giopMagicError(Unknown Source) 
at com.sun.corba.se.impl.logging.ORBUtilSystemException.giopMagicError(Unknown Source) 
at com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase.readGIOPHeader(Unknown Source) 
at com.sun.corba.se.impl.transport.CorbaContactInfoBase.createMessageMediator(Unknown Source) 
... 3 more 

我搜索的網,但我沒有找到合適的解決方案。任何人都可以幫我

回答

2

GIOP Magic是在所有CORBA請求中發送的前四個字節的序列,並通過網絡回覆,並且是ASCII字符GIOP

當您連接到由非CORBA應用程序保持打開的TCP端口時,可能會發生這種情況。確保您的CORBA應用程序配置是正確的,並且客戶端使用的對象引用是有效的。