What kind of bugs and exceptions are you seeing? --K

On 8/31/11 11:47 PM, Computer Learning Inst wrote:

From: Computer Learning Inst
To: "[email protected]"<[email protected]>
Sent: Wednesday, August 31, 2011 6:20 PM
Subject: Re: Exceptions: uddi-ws-3.0.4.jar: UDDIService.class


Thanks.

See, UDDIService.java is "generated" code (generated by JAX-WS RI).

Those getResource(".")and "classpath:/uddi_v3_service.wsdl"in the generated 
code really introduce bugs / exceptions.

________________________________
From: "jm.arnesto@..."
To: [email protected]
Sent: Tuesday, August 30, 2011 12:10 PM
Subject: Re: Exceptions: uddi-ws-3.0.4.jar: UDDIService.class


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]
PEco-Tip: Printing e-mails is usually a waste.

Computer Learning Inst 30/08/2011 18:02

Para: "[email protected]" <[email protected]> cc: Kurt <[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.classhas 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!

Reply via email to