3

我是 corba 的新手,也正在使用 eclipse ide 来运行它。每当运行服务器时,都会出现以下错误消息

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

我在网上搜索但我没有找到合适的解决方案。谁能帮助我

4

1 回答 1

2

GIOP Magic 是网络上所有 CORBA 请求和回复中发送的前四个字节的序列,是 ASCII 字符GIOP

当您连接到由非 CORBA 应用程序保持打开的 TCP 端口时,可能会发生这种情况。确保您的 CORBA 应用程序配置正确,并且您的客户端使用的对象引用有效。

于 2012-12-15T04:34:55.830 回答