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/31 17:31:28 UTC

DO NOT REPLY [Bug 14137] New: - WSDL2Java generated code does not compile.

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=14137>.
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=14137

WSDL2Java generated code does not compile.

           Summary: WSDL2Java generated code does not compile.
           Product: Axis
           Version: 1.0
          Platform: PC
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: Other
         Component: WSDL processing
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: sylvain.stgermain@cognos.com
                CC: sylvain.stgermain@cognos.com


Using Oct 21st code... 

A complexType containing:

	<xs:element name="e_nillable" type="xs:int" nillable="false"/>
	<xs:element name="e_Nillable" type="xs:int" nillable="true"/>

Is translated into:

	private int e_Nillable;
	private java.lang.Integer e_Nillable;
 
Which does not build...