我正在使用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> <发布于 2019-12-19 18:09:08
正如the JavaDoc所指出的,一个java.io.EOFException
在输入期间意外到达文件结束或流结束的信号。 此异常主要用于数据流的输入端信号处理。注意,许多其他输入操作在流结束时返回一个特殊值,而不是抛出异常。
因此,我的结论是,网桥使用的网络连接由于某种原因而失败。我建议您检查桥的远程目的地以及它们之间的网络是否有任何问题。
https://stackoverflow.com/questions/59404973
复制相似问题