
|
If you were logged in you would be able to see more operations.
|
|
|
|
Issue Links:
|
Duplicate
|
|
This issue duplicates:
|
|
|
" title="Incorrect wdlFilename generated in webservices.xml">
XDT-1438 Incorrect wdlFilename generated in webservices.xml
|
|
|
|
|
|
|
|
|
The following code snippet in WseeTagsHandler.wsdlFilename()
always puts WEB-INF/ in front of the wsdl file name in webservices.xml
String prefix = "WEB-INF/";
if (clazz != null && clazz.getDoc().hasTag("ejb.bean")) {
prefix = "META-INF/";
}
return prefix + MessageFormat.format(wsdlPattern, new Object[]{file});
It seems to fail to detect the hasTag().
I think it would be better to leave the prefix building to the user.
The same applies to the jaxrpcMappingFilename() as well.
|
|
Description
|
The following code snippet in WseeTagsHandler.wsdlFilename()
always puts WEB-INF/ in front of the wsdl file name in webservices.xml
String prefix = "WEB-INF/";
if (clazz != null && clazz.getDoc().hasTag("ejb.bean")) {
prefix = "META-INF/";
}
return prefix + MessageFormat.format(wsdlPattern, new Object[]{file});
It seems to fail to detect the hasTag().
I think it would be better to leave the prefix building to the user.
The same applies to the jaxrpcMappingFilename() as well. |
Show » |
| There are no comments yet on this issue.
|
|