error on array of xsd:date
--------------------------

                 Key: AXIS2-4695
                 URL: https://issues.apache.org/jira/browse/AXIS2-4695
             Project: Axis2
          Issue Type: Bug
          Components: adb
            Reporter: Marco Benuzzi


If a schema use an array of xsd:date there is an exception on unmashalling xml 
to adb objects.

Solution:

add the code below to class 
org.apache.axis2.databinding.utils.ConverterUtil.java in method public static 
Object convertToArray(Class baseArrayClass, List objectList) at line 1148

        } else if (Date.class.equals(baseArrayClass)) {
            Date[] array = new Date[listSize];
            for (int i = 0; i < listSize; i++) {
                Object o = objectList.get(i);
                if (o != null) {
                    if (o instanceof String){
                        array[i] = ConverterUtil.convertToDate(o.toString());
                    } else if (o instanceof Date) {
                        array[i] = (Date) o;
                    }
                }
            }
            returnArray = array;


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to