Author: rsearls
Date: 2014-10-05 15:59:44 -0400 (Sun, 05 Oct 2014)
New Revision: 18976
Modified:
common/trunk/src/main/java/org/jboss/ws/common/utils/AbstractWSDLFilePublisher.java
Log:
[JBWS-3827] Added check for https handling in method, publishWsdlImports
Modified:
common/trunk/src/main/java/org/jboss/ws/common/utils/AbstractWSDLFilePublisher.java
===================================================================
---
common/trunk/src/main/java/org/jboss/ws/common/utils/AbstractWSDLFilePublisher.java 2014-10-05
19:57:02 UTC (rev 18975)
+++
common/trunk/src/main/java/org/jboss/ws/common/utils/AbstractWSDLFilePublisher.java 2014-10-05
19:59:44 UTC (rev 18976)
@@ -143,7 +143,7 @@
{
String locationURI = wsdlImport.getLocationURI();
// its an external import, don't publish locally
- if (locationURI.startsWith("http://") == false)
+ if (locationURI.startsWith("http://") == false &&
locationURI.startsWith("https://") == false)
{
// infinity loops prevention
if (published.contains(locationURI))
Show replies by date