I have a spring webapp. There is a screen need to make a call to another webservices (Soap protocol- not restful). I am using cxf to develop that web service client with contract first approach. basically, I follow the cxf sample code:
customerServiceService = new CustomerServiceService(wsdlURL);
CustomerService customerService = customerServiceService.getCustomerServicePort();
customerService.getCustomersByName("AAAA");
So far so good. But the number of calling that web service from my app now is about 10k/day. Do you know how to improve my code or add some parameters to cxf configuration to optimize the performance for that high volume? I am not able to modify server code. The question is for my client code only.