我们正在尝试使用Mule HTTP连接器调用REST服务。如果我们没有成功,我们想重新发送请求,如下所示:
<until-successful objectStore-ref="objectStore"
failureExpression="#[header:INBOUND:http.status != 200]"
maxRetries="6"
secondsBetweenRetries="600">
<http:request config-ref="ComAroundREST_API" path="api/v1/mostread" method="GET" doc:name="GetMostReadRESTCall">
<http:request-builder>
<http:query-param paramName="Take" value="5"/>
</http:request-builder>
</http:request>
</until-successful
但是,如果我们得到一个这样的话,我们需要成功的回应。有没有办法检索它并在有效载荷中设置它