Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.6.2
-
None
-
None
Description
I want to serialize a short variable "shortmin" containing Short.MIN_VALUE (which is legal for short)
In the generated stub there is code
if (localShortmin==java.lang.Short.MIN_VALUE) {
throw new org.apache.axis2.databinding.ADBException("shortmin cannot be null!!");
The == should be replace with < and the exception text with shortmin is < Short.MIN_VALUE
Same for
if (localLongmin==java.lang.Integer.MIN_VALUE) {
throw new org.apache.axis2.databinding.ADBException("longmin cannot be null!!");