Re: [Axis2Java] WSDL 2 - targetNamespace problem

2008-03-11 Thread keith chapman
Woden has fixed this bug. Can you try the nightly and verify that it works
for you.

Thanks,
Keith.

On Tue, Mar 11, 2008 at 10:21 AM, keith chapman [EMAIL PROTECTED]
wrote:

 Hi Daniel,

 This looks like a woden bug. I'll files a jira there with the details
 You've provided.

 https://issues.apache.org/jira/browse/WODEN-201

 Thanks,
 Keith.


 On Mon, Mar 10, 2008 at 7:32 PM, keith chapman [EMAIL PROTECTED]
 wrote:

  Hi Daniel,
 
  Looks like a Woden (The library we use to parse WSDL 2) change caused
  this. I forwarded this message to the woden list. Will keep you updated.
 
  Thanks,
  Keith.
 
 
  On Mon, Mar 10, 2008 at 6:02 PM, Daniel Barta [EMAIL PROTECTED] wrote:
 
   Hi,
  
   We found a problem using a wsdl2java tool with WSDL v.2 files.
  
   Last month we were able to generate stub/client Java code without
   problems.
  
   wsdl:description
  xmlns:wsdl=http://www.w3.org/ns/wsdl;
  targetNamespace=urn:wsdlSamples
  xmlns:tns=urn:wsdlSamples
  xmlns:dtns=urn:wsdlSamplesData
  xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
   
  
   But with the latest revision from SVN (#635534) we received the
   following
   error:
  
   Exception in thread main
   org.apache.axis2.wsdl.codegen.CodeGenerationException: Error parsing
   WSDL
  at
   org.apache.axis2.wsdl.codegen.CodeGenerationEngine.init(
   CodeGenerationEngine.java:166)
  at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:35)
  at org.apache.axis2.wsdl.WSDL2Java.main(WSDL2Java.java:24)
   Caused by: WSDLException: faultCode=OTHER_ERROR: Fatal error.: unknown
   protocol: urn: java.net.MalformedURLException: unknown protocol: urn
  at java.net.URL.init(URL.java:574)
  at java.net.URL.init(URL.java:464)
  at java.net.URL.init(URL.java:413)
  at java.net.URI.toURL(URI.java:1081)
  at
   org.apache.woden.internal.wsdl20.assertions.Description1001.validate(
   Description1001.java:27)
  at
  
   org.apache.woden.internal.wsdl20.validation.WSDLValidator.checkAssertions
   (WSDLValidator.java:109)
   ...
  
   After the following modification the generating of stub/client passed.
  
   wsdl:description
  xmlns:wsdl=http://www.w3.org/ns/wsdl;
  targetNamespace=http://127.0.0.1/wsdlSamples/all.wsdl;
  xmlns:tns=http://127.0.0.1/wsdlSamples/all.wsdl;
  xmlns:dtns=urn:wsdlSamplesData
  xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
   ...
  
   Is it a problem of Description1001.validate() method ?
  
   Thanks,
   Daniel
  
  
   Scanned by ClamAV at protys.cz.
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Keith Chapman
  Software Engineer
  WSO2 Inc.
  Oxygenating the Web Service Platform.
  http://wso2.org/
 
  blog: http://www.keith-chapman.org
 



 --
 Keith Chapman
 Software Engineer
 WSO2 Inc.
 Oxygenating the Web Service Platform.
 http://wso2.org/

 blog: http://www.keith-chapman.org




-- 
Keith Chapman
Software Engineer
WSO2 Inc.
Oxygenating the Web Service Platform.
http://wso2.org/

blog: http://www.keith-chapman.org


[Axis2Java] WSDL 2 - targetNamespace problem

2008-03-10 Thread Daniel Barta
Hi,

We found a problem using a wsdl2java tool with WSDL v.2 files.

Last month we were able to generate stub/client Java code without problems.

wsdl:description
xmlns:wsdl=http://www.w3.org/ns/wsdl;
targetNamespace=urn:wsdlSamples
xmlns:tns=urn:wsdlSamples
xmlns:dtns=urn:wsdlSamplesData
xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;


But with the latest revision from SVN (#635534) we received the following
error:

Exception in thread main
org.apache.axis2.wsdl.codegen.CodeGenerationException: Error parsing WSDL
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.init(CodeGenerationEngine.java:166)
at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:35)
at org.apache.axis2.wsdl.WSDL2Java.main(WSDL2Java.java:24)
Caused by: WSDLException: faultCode=OTHER_ERROR: Fatal error.: unknown
protocol: urn: java.net.MalformedURLException: unknown protocol: urn
at java.net.URL.init(URL.java:574)
at java.net.URL.init(URL.java:464)
at java.net.URL.init(URL.java:413)
at java.net.URI.toURL(URI.java:1081)
at
org.apache.woden.internal.wsdl20.assertions.Description1001.validate(Description1001.java:27)
at
org.apache.woden.internal.wsdl20.validation.WSDLValidator.checkAssertions(WSDLValidator.java:109)
...

After the following modification the generating of stub/client passed.

wsdl:description
xmlns:wsdl=http://www.w3.org/ns/wsdl;
targetNamespace=http://127.0.0.1/wsdlSamples/all.wsdl;
xmlns:tns=http://127.0.0.1/wsdlSamples/all.wsdl;
xmlns:dtns=urn:wsdlSamplesData
xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
...

Is it a problem of Description1001.validate() method ?

Thanks,
Daniel


Scanned by ClamAV at protys.cz.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [Axis2Java] WSDL 2 - targetNamespace problem

2008-03-10 Thread keith chapman
Hi Daniel,

Looks like a Woden (The library we use to parse WSDL 2) change caused this.
I forwarded this message to the woden list. Will keep you updated.

Thanks,
Keith.

On Mon, Mar 10, 2008 at 6:02 PM, Daniel Barta [EMAIL PROTECTED] wrote:

 Hi,

 We found a problem using a wsdl2java tool with WSDL v.2 files.

 Last month we were able to generate stub/client Java code without
 problems.

 wsdl:description
xmlns:wsdl=http://www.w3.org/ns/wsdl;
targetNamespace=urn:wsdlSamples
xmlns:tns=urn:wsdlSamples
xmlns:dtns=urn:wsdlSamplesData
xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
 

 But with the latest revision from SVN (#635534) we received the following
 error:

 Exception in thread main
 org.apache.axis2.wsdl.codegen.CodeGenerationException: Error parsing WSDL
at
 org.apache.axis2.wsdl.codegen.CodeGenerationEngine.init(
 CodeGenerationEngine.java:166)
at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:35)
at org.apache.axis2.wsdl.WSDL2Java.main(WSDL2Java.java:24)
 Caused by: WSDLException: faultCode=OTHER_ERROR: Fatal error.: unknown
 protocol: urn: java.net.MalformedURLException: unknown protocol: urn
at java.net.URL.init(URL.java:574)
at java.net.URL.init(URL.java:464)
at java.net.URL.init(URL.java:413)
at java.net.URI.toURL(URI.java:1081)
at
 org.apache.woden.internal.wsdl20.assertions.Description1001.validate(
 Description1001.java:27)
at
 org.apache.woden.internal.wsdl20.validation.WSDLValidator.checkAssertions(
 WSDLValidator.java:109)
 ...

 After the following modification the generating of stub/client passed.

 wsdl:description
xmlns:wsdl=http://www.w3.org/ns/wsdl;
targetNamespace=http://127.0.0.1/wsdlSamples/all.wsdl;
xmlns:tns=http://127.0.0.1/wsdlSamples/all.wsdl;
xmlns:dtns=urn:wsdlSamplesData
xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
 ...

 Is it a problem of Description1001.validate() method ?

 Thanks,
 Daniel


 Scanned by ClamAV at protys.cz.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Keith Chapman
Software Engineer
WSO2 Inc.
Oxygenating the Web Service Platform.
http://wso2.org/

blog: http://www.keith-chapman.org


Re: [Axis2Java] WSDL 2 - targetNamespace problem

2008-03-10 Thread keith chapman
Hi Daniel,

This looks like a woden bug. I'll files a jira there with the details You've
provided.

https://issues.apache.org/jira/browse/WODEN-201

Thanks,
Keith.

On Mon, Mar 10, 2008 at 7:32 PM, keith chapman [EMAIL PROTECTED]
wrote:

 Hi Daniel,

 Looks like a Woden (The library we use to parse WSDL 2) change caused
 this. I forwarded this message to the woden list. Will keep you updated.

 Thanks,
 Keith.


 On Mon, Mar 10, 2008 at 6:02 PM, Daniel Barta [EMAIL PROTECTED] wrote:

  Hi,
 
  We found a problem using a wsdl2java tool with WSDL v.2 files.
 
  Last month we were able to generate stub/client Java code without
  problems.
 
  wsdl:description
 xmlns:wsdl=http://www.w3.org/ns/wsdl;
 targetNamespace=urn:wsdlSamples
 xmlns:tns=urn:wsdlSamples
 xmlns:dtns=urn:wsdlSamplesData
 xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
  
 
  But with the latest revision from SVN (#635534) we received the
  following
  error:
 
  Exception in thread main
  org.apache.axis2.wsdl.codegen.CodeGenerationException: Error parsing
  WSDL
 at
  org.apache.axis2.wsdl.codegen.CodeGenerationEngine.init(
  CodeGenerationEngine.java:166)
 at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:35)
 at org.apache.axis2.wsdl.WSDL2Java.main(WSDL2Java.java:24)
  Caused by: WSDLException: faultCode=OTHER_ERROR: Fatal error.: unknown
  protocol: urn: java.net.MalformedURLException: unknown protocol: urn
 at java.net.URL.init(URL.java:574)
 at java.net.URL.init(URL.java:464)
 at java.net.URL.init(URL.java:413)
 at java.net.URI.toURL(URI.java:1081)
 at
  org.apache.woden.internal.wsdl20.assertions.Description1001.validate(
  Description1001.java:27)
 at
 
  org.apache.woden.internal.wsdl20.validation.WSDLValidator.checkAssertions
  (WSDLValidator.java:109)
  ...
 
  After the following modification the generating of stub/client passed.
 
  wsdl:description
 xmlns:wsdl=http://www.w3.org/ns/wsdl;
 targetNamespace=http://127.0.0.1/wsdlSamples/all.wsdl;
 xmlns:tns=http://127.0.0.1/wsdlSamples/all.wsdl;
 xmlns:dtns=urn:wsdlSamplesData
 xmlns:wsoap= http://www.w3.org/ns/wsdl/soap;
  ...
 
  Is it a problem of Description1001.validate() method ?
 
  Thanks,
  Daniel
 
 
  Scanned by ClamAV at protys.cz.
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 Keith Chapman
 Software Engineer
 WSO2 Inc.
 Oxygenating the Web Service Platform.
 http://wso2.org/

 blog: http://www.keith-chapman.org




-- 
Keith Chapman
Software Engineer
WSO2 Inc.
Oxygenating the Web Service Platform.
http://wso2.org/

blog: http://www.keith-chapman.org