DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13407>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13407 WSDL2Java produces noncompilable code for documentation with /**/ Summary: WSDL2Java produces noncompilable code for documentation with /**/ Product: Axis Version: current (nightly) Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: WSDL processing AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] If documentation tag contains characters for Java comments, like in this code: <wsdl:portType name="Simple"> <wsdl:operation name="doSomething"> <wsdl:documentation> Some simple description with /* comment */ </wsdl:documentation> then generated Java class contains syntactically incorrect nested comments: /** * Some simple description with /* comment */ */ public java.lang.String doSomething() throws java.rmi.RemoteException;