You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/10/08 15:41:16 UTC

DO NOT REPLY [Bug 13407] New: - WSDL2Java produces noncompilable code for documentation with /**/

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: axis-dev@xml.apache.org
        ReportedBy: makub@ics.muni.cz


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;