我有一个简单的 Mule 流程,我通过 HTTP 端点接收 XML 消息,然后对其进行一些处理。第一步是通过另一个出站 HTTP 端点将消息发送到 Web 服务。该服务只是保存消息而不对其进行处理。因此,我实际上想忽略出站端点的返回值并继续处理最初收到的消息。我试着让端点在路上,但是我当前的 Mule 消息变成了空的。
如何调用端点,但忽略任何返回并继续处理我的原始消息?
在这种情况下,异步应该是更好的选择。
Mule 中的异步有助于继续处理,忽略异步内部调用的消息处理器的结果。
ex:
<flow name="sample" >
<http:inbound-endpoint ...... />
.... Some processing.....
<async>
<http:outbound-endpoint ....... />
</async>
...... Continue with the processing with the original message....
</flow>
希望这可以帮助。
您可以使用<wiretap>
: http: //www.mulesoft.org/documentation/display/current/Routing+Message+Processors#RoutingMessageProcessors-WireTap
或使用<async>
范围: http: //www.mulesoft.org/documentation/display/current/Async+Scope+Reference
或者<enricher>
如果您想将响应存储在变量中但不处理当前有效负载,请使用:http: //www.mulesoft.org/documentation/display/current/Message+Enricher
请注意,窃听器和丰富器是同步的,并且会阻止异步不会的进一步处理。