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 2003/04/08 16:04:47 UTC

DO NOT REPLY [Bug 18814] New: - Post 1.1RC2 builds break Boolean/Integer/Double WSDL2Java generation

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

Post 1.1RC2 builds break Boolean/Integer/Double WSDL2Java generation

           Summary: Post 1.1RC2 builds break Boolean/Integer/Double
                    WSDL2Java generation
           Product: Axis
           Version: current (nightly)
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Blocker
          Priority: Other
         Component: WSDL processing
        AssignedTo: axis-dev@ws.apache.org
        ReportedBy: ajbanck@informatica.com


Classes generated with WSDL2Java from 1.1RC2 from the WSDL below have fields of 
type java.lang.Double.
Generated classes from the same WSDL with nighlty 06/04/2003 have fields of 
type double. This breaks the client code after upgrading to latest Axis and re-
generating the proxy classes.
Same problem with boolean/integer.

Class generated with Axis 1.1RC2:
public class IASGaugeData  extends 
com.informatica.ias.api4.services.common.soapclient.IASObject  implements 
java.io.Serializable {
    private java.lang.Double previousValue;
    private java.lang.Double value;


Class generated with Axis20030406:
public class IASGaugeData  extends 
com.informatica.ias.api4.services.common.soapclient.IASObject  implements 
java.io.Serializable {
    private double previousValue;
    private double value;


WSDL:
             <complexType name="IASGaugeData">
                    <complexContent>
                           <extension base="tns10:IASObject">
                                  <sequence>
                                         <element name="previousValue" 
nillable="true" type="xsd:double"/>
                                         <element name="value" nillable="true" 
type="xsd:double"/>
                                  </sequence>
                           </extension>
                    </complexContent>
             </complexType>