I am calling the external web service from the Java Component by using the CXF Client Proxy, as described in: https://docs.mulesoft.com/mule-user-guide/v/3.7/consuming-web-services-with-cxf#building-a-client-proxy
The default execution time is set to 10 seconds, but the web service sometimes may require more time to complete. I tried increasing the time with:
ClientBuilder.newClient().property("http.receive.timeout", 600000);
, but it didn't help. Using the example from the above link, how to increase the timeout?