Hello everyone,

I am trying to generate the java classes from a WSDL and Schema that I have written by hand. When I click on "Finish" in the last step of the Codegen Wizard, the following message pops up:

An error occured while code generating java.lang.InterruptedException:
org.apache.axis2.wsdl.codegen.CodeGenerationException:
java.lang.RuntimeException: WSDL writing failed!


Then I inspected my WSDL (because I was pretty sure that something must be wrong there) and found that I declared a namespace in a wrong way (which means that the WSDL was invalid). My mistake was that I defined

  xmlns:xsd="http://www.w3.org/2001/XMLSchema/";

in the "wsdl:definitions" tag instead of

  xmlns:xsd="http://www.w3.org/2001/XMLSchema";

After having fixed this problem, the code generation succeeded.

I'd like to know if you have plans to validate whether the preconditions for a successful code generation are satisfied when a WSDL file is selected by the user (just for dumb users like me :-) An error message that shows the real problem would be really helpful.

Thanks and regards,
Matthias


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

Reply via email to