Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
The standard URL for an axis service is http://host/path?wsdl. The plugin transforms this into http---host-path-wsdl. This means the scanner totally skips over it since it's looking for .wsdl extensions. Add the following fix to DefaultWSDL2JavaPlugin (~line 336):
String safeFileName = createSafeFileName(urlStr);
if (!safeFileName.endsWith(".wsdl")) {
safeFileName += ".wsdl";
}
File localWsdl = new File( urlDownloadDirectory, safeFileName);
fixed
I'll release a snapshot later today, 1.1-SNAPSHOT
thanks!