Hi,
in the case I'm trying to address, I receive a call from a third party system that I handle using Spring Integration 2.2.0. After processing the message I have to call back the third party making a rest call to delete or update an entry. The third party server responds with a 302 and a Location header but the http outbound gateway or the channel adapters don't follow the redirect.
<int:chain input-channel="out2" output-channel="nullChannel">
<int:service-activator expression="aCorrectExpressionWasHere"/>
<int-http:outbound-gateway
url-expression ="headers.alertUrl"
http-method="PUT" reply-channel="nullChannel"
expected-response-type="java.lang.String" />
</int:chain>
any idea what I might be doing wrong?
Best regards,


Reply With Quote
