Mule HTTP出站处理程序重定向请求?

时间:2015-01-06 10:01:42

标签: mule mule-studio mule-component

我使用mule的http组件作为出站呼叫休息服务,该服务正在发送' 307'重定向请求,HTTP端点不处理重定向请求。 我的意思是,HTTP组件没有处理重定向请求到另一个URL。就像Apache等其他HTTP客户端正在处理!

是终点的预期行为还是我做错了什么。

INFO 2015-01-06 15:13:23,193 [[test].connector.http.mule.default.receiver.04] org.mule.transport.http.HttpsClientMessageDispatcher: Received a redirect, but followRedirects=false. Response code: 307 Temporary Redirect

1 个答案:

答案 0 :(得分:2)

您需要将出站端点的 followRedirects 标记设置为 true

<http:outbound-endpoint followRedirects="true" .... />