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=18287>. 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=18287 Error in serialization of xsd:boolean fields [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Normal |Blocker Status|NEW |ASSIGNED Priority|Other |High ------- Additional Comments From [EMAIL PROTECTED] 2003-03-26 16:03 ------- In src/org/apache/axis/wsdl/symbolTable/Utils.java, getNillableQName assumes that xsd:int has to be mapped to soap-enc:int if the element can have a null value (minOccurs="0" & maxOccurs="1") imples a null value. The assumption was that xsd:int maps to java primitive int and hence cannot be nillable (while soap-enc:int maps to java.lang.Integer and can be nillable). This was probably the case in an early draft of the JAXRPC 1.0 spec. With the final version of 1.0 spec (see TABLE 4-1, 4-2 and 4-3 on pages 22, 23) xsd:int maps to java primitive int (if it is not nillable) and maps to java.lang.Integer (if nillable). So this bug needs to be fixed for 1.1 release. Thanks, dims
