1

メッセージを JMS キューに送信しようとしていますが、次のエラーが発生します。

    13:48:00,686 WARN  [SimpleConnectionManager] A problem has been detected with the connection 
    to remote client 5c4o15e-ymtiah-hy5hsfkr-1-hy5hsg3i-4, jmsClientID=b-k8gsh5yh-1-rkfsh5yh-
    haitmy-e51o4c5. It is possible the client has exited without closing its connection(s) or the 
    network has failed. All associated connection resources will be cleaned up.

これを修正する方法に関する提案の 1 つは、クライアント ping の周期を次のように変更することでした。

    <attribute name="clientLeasePeriod" isParam="true">20000</attribute>
    <attribute name="validatorPingPeriod" isParam="true">20000</attribute>
    <attribute name="validatorPingTimeout" isParam="true">10000</attribute>

しかし、それでも役に立ちませんでした。これを修正する方法、またはクライアントへの接続障害の原因について何か提案はありますか?

4

1 に答える 1

0

プロデューサーで TopicSession および TopicConnection オブジェクトを閉じていることを確認してください。この場合は QueueConnection および QueueSession オブジェクトを閉じてください。

于 2015-12-08T06:10:05.050 に答える