I have a legacy SOAP
based web service, written using Apache Axis2
. And the current client is created using plain old JAVA Sockets
and HTTP 1.0
.Planning to upgrade the client to use HTTP 2.0
. What are the options based on the latest industry standards and best practices? The service url supports SSL
as well.
- Use Apache CXF client
- Use Apache Axis client
- HttpClient/ Httpurlconnection or something else?