Wrong Date handling in SimpleTypeMapper ---------------------------------------
Key: AXIS2-4626 URL: https://issues.apache.org/jira/browse/AXIS2-4626 Project: Axis2 Issue Type: Bug Components: databinding Affects Versions: 1.5.1 Environment: Not relevant Reporter: Bernhard Schauer Class SimpleTypeMapper Line 113 to 115: } else if (name.equals(W_DATE)) { return makeDate(text); } Line 312 to 314: public static Object makeDate(String source) { return ConverterUtil.convertToDateTime(source).getTime(); } I think the latter should return the result from ConverterUtil.convertToDate(source) not from convertToDateTime. If that is not possible, I'd expect ConverterUtil.convertToDateTime to also accept a date in the format "yyyy-mm-dd" not only in the long 19 character version? or am I wrong here? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.