[ https://issues.apache.org/jira/browse/AXIS2-5183?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Sagara Gunathunga reassigned AXIS2-5183: ----------------------------------------- Assignee: Sagara Gunathunga > 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-unsubscr...@axis.apache.org For additional commands, e-mail: java-dev-h...@axis.apache.org