Here is a quick way to troubleshoot where a class was loaded from:
WSDLLocator.class.getClassLoader().getResource("javax/wsdl/xml/WSDLLocator.class")
Will print out the jar that WSDLLocator was loaded out from.
WSDLLocator.class.getClassLoader().getResource("javax/wsdl/xml/WSDLLocator.class")
Will print out the jar that WSDLLocator was loaded out from.
Comments