-
Bug
-
Resolution: Done
-
Major
-
jbossws-cxf-4.3
-
None
WSDL publisher incorrectly attempt to publish external HTTPS schema import
See lone 210 in src/main/java/org/jboss/ws/common/utils/AbstractWSDLFilePublisher.java
repo https://svn.jboss.org/repos/jbossws/common/trunk
210 if (schemaLocation.length() > 0 && schemaLocation.startsWith("http://")
This should be
210 if (schemaLocation.length() > 0 && schemaLocation.startsWith("http://") == false && schemaLocation.startsWith("https://") == false)
This is related to https://issues.jboss.org/browse/JBWS-3827