Hi, If I try to validate some type of data which should by 'date' I get the message e.g. "cvc-datatype-valid.1.2.1: 'Boss' is not a valid value for 'dateTime'." instead of "cvc-datatype-valid.1.2.1: 'Boss' is not a valid value for 'date'.". I looked into the code of the library I found that class DateDV has method public Object getActualValue(String content) while actually during validation in class XSSimpleTypeDecl is called Object avalue = fDVs[fValidationDV].getActualValue(nvalue, context);. That's why getActualValue is called from DateTimeDV not from DateDV. Is this a bug ??
Thanks, Tomasz