How to configure SSL with Axis2 using httpClient4
Since the httpClient 3 has been outdated, I need a replacement for the code: SSLProtocolSocketFactory.setSSL(trustStore, keyStore, pasw); ProtocolSocketFactory factory = new SSLProtocolSocketFactory(); Protocol.registerProtocol("https", new Protocol("https", factory, 443)); Please share if anyone has tried it. In the java code, I'm tring to call the webservice using OperationClient object operationClientObject.execute(true); Thanks in advance.. The axis2 httpclient4 migration is not so easy, as it appears from the "documentation". During the process, I use the latest Axis 2 version 1.7.8. The