2
我有一個代碼訪問web服務而這又回到我的迴應Web服務集成 - 如何在響應類中訪問請求對象?
<int:chain input-channel="balanceChannel" output-channel="processedItems">
\t \t <int-ws:outbound-gateway destination-provider="myDestinationProvider" />
\t </int:chain>
<int:service-activator input-channel="processedItems"
\t \t ref="responseHandler" method="handleResponse" output-channel="nativeQlChannel" />
我能夠得到我的ResponseHandler所迴應,但我也想請求對象,我使用頻道發送到網絡服務?我如何在responseHandler中訪問相同的請求對象?
謝謝@ artem-bilan,它解決了我的問題。我可以在有效載荷中添加一些更多的值,記住它不應該發送到Web服務調用?任何方式來添加一些變量? –