I have a flow that uses the http:rest-service-component
component. The URL that I want to call takes around a minute to return a response, but "http:rest-service-component" only waits for 10 seconds.
How do I change this timeout value? The http:rest-service-component
element doesn't have any sort of timeout attribute. I also tried creating an "http:connector" and setting a timeout value there, but that didn't work. Thanks.
<flow name="theFlow">
<inbound-endpoint ... />
<http:rest-service-component serviceUrl="..." />
</flow>