次のようなフロー パターンがある場合に気付きました。
<flow name="httpIn">
<http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:9001/test/in" />
<logger level="INFO" />
<http:outbound-endpoint exchange-pattern="request-response" address="http://localhost:9001/test/out" />
<logger level="INFO" />
</flow>
outbound-endpoint
with request-response
exchange パターンが呼び出された後、元の HTTP 要求からの受信プロパティが失われることに注意してください。
これは正常な動作ですか?すべての送信エンドポイントに対してこれを全体的に無効にする方法はありますか、それともこのエンドポイント固有ですか?