Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid xml serialization of DateTime value
Serialization emitted wrong string for the XML dateTime type Wrong: <uax:DateTime>2020-01-31 12:00:00</uax:DateTime> Correct: <uax:DateTime>2020-01-31T12:00:00</uax:DateTime> Notice the missing T seperator in the text representation of the value attribute. In XML the parser expects a string according to this format. https://www.w3.org/TR/xmlschema-2/#dateTime Fixes issue #1343
- Loading branch information