Where can you get the source code? In the SVN repository, of
course. Please have a look at this:
http://juddi.apache.org/source-repository.html
Best regards.
--
Jose Manuel Arnesto López - R&D Innovation
TELVENT
Telvent Arce Sistemas, S.A.
Telvent - Bilbao - Vizcaya
Phone: +34944224004 (2004) Fax: +34944440658
[email protected]
P Eco-Tip: Printing e-mails is usually a waste.
Computer Learning Inst
30/08/2011 18:02
Por favor, responda a user
Para:
"[email protected]" <[email protected]>
cc:
"[email protected]" <[email protected]>
Asunto:
Exceptions: uddi-ws-3.0.4.jar: UDDIService.class
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!