我需要向多个不同的地址发送请求。有些成功,有些可能返回错误,我需要为此响应写入日志。我想我需要一一处理响应消息。如何在外部执行此操作。我的服务配置是:
<proxy xmlns="http://ws.apache.org/ns/synapse" name="CloneTest" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
<target>
<inSequence>
<clone id="12345">
<target>
<endpoint>
<address uri="address1" format="pox" />
</endpoint>
</target>
<target>
<endpoint>
<address uri="address2" format="pox" />
</endpoint>
</target>
<target>
<endpoint>
<address uri="address3" format="pox" />
</endpoint>
</target>
</clone>
</inSequence>
<outSequence>
<log level="full" />
<send />
</outSequence>
</target>
</proxy>
此致。