weblogic.rjvm.PeerGoneException



我正在使用Weblogic 10.3.6。网桥进入非活动状态,当我检查日志时,我发现以下错误。有什么想法可以解决这个问题吗?

<Dec 4, 2019 11:59:34 PM GMT> <Warning> <MessagingBridge> <BEA-200026> <Bridge "ABC_DEF_GHI" encountered some problems in one of its adapters or underlying systems. It stopped transferring messages and will try to reconnect to the adapters shortly. (The exception caught was weblogic.jms.common.LostServerException: java.lang.Exception: weblogic.rjvm.PeerGoneException: ; nested exception is:
java.io.EOFException.)>
<Dec 4, 2019 11:59:34 PM GMT> <Warning> <MessagingBridge> <BEA-200026> <Bridge "ABC_DEF_GHI" encountered some problems in one of its adapters or underlying systems. It stopped transferring messages and will try to reconnect to the adapters shortly. (The exception caught was weblogic.jms.common.LostServerException: java.lang.Exception: weblogic.rjvm.PeerGoneException: ; nested exception is:
java.io.EOFException.)>
<Dec 4, 2019 11:59:37 PM GMT> <Warning> <Connector> <

正如JavaDoc所示,java.io.EOFException

表示在输入期间意外到达文件末尾或流末尾。

此异常主要由数据输入流用于指示流结束。请注意,许多其他输入操作在流末尾返回特殊值,而不是引发异常。

因此,我得出的结论是,由于某种原因,网桥使用的网络连接失败了。我建议您检查网桥的远程目的地以及它们之间的网络是否存在任何问题。

相关内容

  • 没有找到相关文章

最新更新