【发布时间】:2017-11-17 16:33:58
【问题描述】:
很简单的问题。我正在使用 vanilla wso2esb 4.9.0 并尝试死信通道设计。它失败!存储在队列中的消息是端点接收到的肥皂故障错误。我究竟做错了什么?这是工作吧?我下面的例子是:https://docs.wso2.com/display/IntegrationPatterns/Dead+Letter+Channel
<proxy xmlns="http://ws.apache.org/ns/synapse" name="Proxy1"
transports="https,http" statistics="disable" trace="disable"
startOnLoad="true">
<target>
<inSequence>
<log level="full" />
</inSequence>
<outSequence>
<log level="full">
<property name="MSG" value="Response...." />
</log>
<send />
</outSequence>
<faultSequence>
<log level="full">
<property name="MSG" value="++++++++++FAULT---------...." />
</log>
<property name="target.endpoint" value="ReportDataTransferServiceEp" />
<store messageStore="ReportMessageStore" />
</faultSequence>
<endpoint>
<address uri="http://localhost:8080/TestSoapESB/webservices/ReportDataTransferService" />
</endpoint>
</target>
<publishWSDL
uri="http://localhost:8080/TestSoapESB/webservices/ReportDataTransferService?wsdl" />
<description></description>
【问题讨论】: