Mule - How to do a choice/when based on http respo

2019-03-03 08:50发布

I need to be able to perform certain actions based on the http response code I get back from an http outbound endpoint. For instance if I get a 500 error or a 302 redirect or a 200. I need a way to evaluate the 500, 302, 200. I know how to use Choice-When, but don't know how to access the response code using groovy or whatever you suggest.

2条回答
Juvenile、少年°
2楼-- · 2019-03-03 09:46

Seba is right but that is not enough.

By default, if an client or server error is detected in an HTTP outbound interaction (ie response code >= 400), Mule will treat the response as an error and will break the flow execution and call the exception strategy to deal with the error.

You need to deactivate this behaviour before doing the HTTP outbound interaction in order to have the rest of the flow (your choice router) be called. So you need this:

<set-variable variableName="http.disable.status.code.exception.check"
              value="true" />

before your HTTP outbound endpoint.

查看更多
Deceive 欺骗
3楼-- · 2019-03-03 09:49

You can get the HTTP response code with the following expression right after the HTTP outbound endpoint:

#[message.inboundProperties['http.status']]

Likewise in a Groovy script:

message.getInboundProperty('http.status')
查看更多
登录 后发表回答