複数の異なるアドレスにリクエストを送信する必要があります。成功するものもあれば、エラーを返すものもあります。この応答のログを書き込む必要があります。応答メッセージを1つずつ処理する必要があると思います。これを順不同で行う方法。私のサービス構成は次のとおりです。
<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>
よろしくお願いします。