2017-06-23 1 views
0

Oi メッセージをjmsキューに入れるbpelプロセスがあります。何らかの理由でキューに挿入が失敗した場合は、特定の作業を行う必要があります。 EMコンソールの挿入を無効にしたことをテストするには、bpelが例外を挿入しようとしたときに私はそれをキャッチできません。 私の問題を解決する方法はありますか?JMSキューが見つかりません例外

これは

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> 
    <env:Header> 
     <tracking:faultId xmlns:tracking="http://oracle.soa.tracking.core.TrackingProperty">470018</tracking:faultId> 
    </env:Header> 
    <env:Body> 
     <env:Fault> 
      <faultcode>env:Server</faultcode> 
      <faultstring>Exception occurred when binding was invoked. Exception occurred during invocation of JCA binding: "JCA Binding execute of Reference operation 'Produce_Message' failed due to: ERRJMS_PROVIDER_ERR. ERRJMS_PROVIDER_ERR. Unable to produce message due to JMS provider internal error. Please examine the log file to determine the problem. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.</faultstring> 
      <faultactor/> 
      <detail> 
       <exception>Failed to send message to the destination SRVMEModule!SRVS04: Destination is suspended</exception> 
      </detail> 
     </env:Fault> 
    </env:Body> 
</env:Envelope> 

答えて

0

あなたの障害がイースリーキャッチして処理することができ、標準的な結合の障害のように見える私の応答です。スコープ内にjms挿入アクティビティを置くと、スコープ・レベルでエラー・ハンドラ(すべてをキャッチ)を定義できるはずです。

関連する問題