骆驼交换无一例外失败

Camel exchange failed without an exception

从 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>

据我所知,默认情况下不处理故障。为了启用此功能,必须设置 属性:handleFault="true"。可以为整个 Camel 上下文或单个路由设置它。

XML 中的路线示例:

<route handleFault="true">
...
</route