在从 Camel 2.1 升级到 2.17 和一些代码修改后,我们在 Camel 中的异常处理方面遇到了一些问题。我们从应用 A 向应用 B 发送消息。快乐的流程可以正常工作,但不快乐的流程不能。
我们发送消息以导致异常,但在onexception
块中未正确处理。
实际上,我们看到以下跟踪日志:ProcessTaskEx - message received
,但我没有看到:ProcessTaskEx - exception
我们从 Camel 得到的例外是:
camel exchange failed without an exception: <SOAP-ENV:Fault xmlns:SOAP-ENV>
我们的路线看起来像这样,知道问题可能是什么吗?非常感谢您的时间社区!:)
<?xml version="1.0" encoding="ASCII"?>
<routes xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="switchyard://ProcessTaskEx"/>
<log message="ProcessTaskEx - message received: ${body}" loggingLevel="DEBUG" logName="WebServiceQueues" />
<to uri="switchyard://RequestCapacity"/>
<onException>
<exception>java.lang.Exception</exception>
<exception>webservicequeues.utilities.WebServiceQueueException</exception>
<log message="ProcessTaskEx - exception" loggingLevel="DEBUG" logName="WebServiceQueues" />
<redeliveryPolicy maximumRedeliveries="2" redeliveryDelay="60000" maximumRedeliveryDelay="900000" retriesExhaustedLogLevel="INFO" retryAttemptedLogLevel="INFO"/>
<handled>
<constant>true</constant>
</handled>
<log message="Failed after Retry.Sending ProcessTask Request to Error Queue" loggingLevel="ERROR" logName="WebServiceQueues" />
<to uri="switchyard://ErrorProcessTaskExQueue"/>
</onException>
</route>
</routes>