Hi jUDDI users + developers!
Thank you for a very good product. Your efforts are appreciated. We're using
jUDDI for very critical needs within our organization.
We need source code for uddi-ws-3.0.4.jar. Where can we find it?
WHY THE NEED:
We are using uddi-ws-3.0.4.jar. The org.uddi.v3_service.UDDIService.class has
a static initializer similar to below:
static
{
URL url = null;
try
{
URL baseUrl = UDDIService.class.getResource(".");
url = new URL(baseUrl, "classpath:/uddi_v3_service.wsdl");
} catch (MalformedURLException e) {
logger.warning("Failed to create URL for the wsdl Location:
'classpath:/uddi_v3_service.wsdl', retrying as a local file");
logger.warning(e.getMessage());
}
UDDISERVICE_WSDL_LOCATION = url;
}
Now, those getResource(".") and "classpath:/uddi_v3_service.wsdl" really do not
work together. We run into problems as explained by someone at
"http://stackoverflow.com/questions/764772/jax-ws-loading-wsdl-from-jar".
Where do we get the source code for uddi-ws-3.0.4.jar from? We're nearing some
deadlines here. Thanks!