best way to parse XML's without XSD
jmartApr 23 2013 — edited Apr 24 2013Hello,
In the past every time I've had to process XML's I've had an XSD that I could use for marshalling the XML into a bean. But now I have to communicate to an API that returns XML's that do not have any XSD or other type of XML description document.
I was just going to use dumb string parsing and matching. Is there a better way to deal with this? Is there like a tool or library that will take the XML ias input and put it into a generalized container with maps and such that I can yank out the data I want?
thanks
jose