I'm currently trying to determine whether we can replace our company's convoluted XML processing solution (based on XPath) with one based on @SfdcFox's XmlToJson solution.
Unfortunately, the XML we need to parse includes Date and Time as element names, e.g.:
<RequestedCompletionDateTime>
<Date>2019-01-28</Date>
<Time>11:00:09Z</Time>
</RequestedCompletionDateTime>
Is it possible to use an XML -> Json -> Object solution to parse this document? Or will this prove a blocker issue?
If so, how can we solve this? (I'm thinking maybe we could pre-process the document to rename these element, but I'm not sure that could be done in an efficient way and I'm hoping there would be a more elegant solution.)