When I create webservice client stubs using Apache Axis, I will disable server certificate trust verification in my code using client stubs by calling the following method
AxisProperties.setProperty("axis.socketSecureFactory", "org.apache.axis.components.net.SunFakeTrustSocketFactory");
How to disable trust verification with client stubs that were generated when wsimport started?
I use this when I run some test code.
java web-services jax-ws wsimport axis
user93353
source share