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 "Hudson (Commented) (JIRA)" <ji...@apache.org> on 2011/11/15 21:16:53 UTC

[jira] [Commented] (AXIS2-5183) Null as first element in non-primitive array causes other array elements to be disregarded

    [ https://issues.apache.org/jira/browse/AXIS2-5183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13150736#comment-13150736 ] 

Hudson commented on AXIS2-5183:
-------------------------------

Integrated in Axis2 #1107 (See [https://builds.apache.org/job/Axis2/1107/])
    Fixed AXIS2-5183.

sagara : 
Files : 
* /axis/axis2/java/core/trunk/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java

                
> Null as first element in non-primitive array causes other array elements to be disregarded
> ------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-5183
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5183
>             Project: Axis2
>          Issue Type: Bug
>          Components: adb, databinding
>    Affects Versions: 1.6.0, 1.6.1
>            Reporter: Vilnis Termanis
>            Assignee: Sagara Gunathunga 
>              Labels: BeanUtil, array, null
>             Fix For: 1.6.2, 1.7.0
>
>         Attachments: BeanUtil_Axis2_1.6.0.patch
>
>
> Procedure:
> 1) Create service function (e.g. POJO) which has an array parameter, e.g.:
> public static boolean testFunc(Integer[] integers) {
>   System.out.println((integers != null) ? integers.length : "null");
> }
> 2) Send request with null as first element, e.g.:
> <ns1:testFunc><ns1:integers/><ns1:integers>1</ns1:integers><ns1:integers>2</ns1:integers></ns1:testFunc>
> 3) Send request with null as non-first element, e.g.:
> <ns1:testFunc><ns1:integers>1</ns1:integers><ns1:integers/><ns1:integers>2</ns1:integers></ns1:testFunc>
> Result:
> 2) Array of length 0 (i.e. null) received - WRONG
> 3) Array of length 3 received (1, null, 2, as expected)
> Reason:
> BeanUtil.java ignores non-null elements of an array in ProcessElement() if the first element is null even if there is more than one element.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org