I'm performing a trade study evaluating various methods for parsing XML for a large system. I'm looking at both analytical and actual relative performance (space & time) on multiple platforms (iOS, Linux, OS X, Windows). My current candidate evaluation list of methods and libraries is the following:

Am I missing any particularly valuable tools, or different parsing methods?

link|improve this question

You want XmlReader, not XmlTextReader. – John Saunders Apr 19 '11 at 18:58
I corrected it, thanks! – retrodrone Apr 19 '11 at 19:29
Your JAXB link is for version 1, JAXB 2.2 (JSR-222) is the current release: jcp.org/en/jsr/detail?id=222 – Blaise Doughan Apr 28 '11 at 20:27
feedback

3 Answers

up vote 1 down vote accepted

You are missing Linq-To-Xml/XDocument which provides an alternative to XmlDocument/DOM .

link|improve this answer
Ooh you're right, thanks for that. – retrodrone Apr 19 '11 at 18:35
feedback

Altova XMLSpy provides an approach to build high-performance DTD or Schema-specific XML readers and writers.

I have no experience with the product, but have built prototypes for similar tools, because I think the basic premise is extremely good.

EDIT: A comment requested a pointer to "how this is done". Dunno how they do it (know how I did it :), but here's a link that talks about at the Altova site: http://www.altova.com/xmlspy/xml-code-generation.html

link|improve this answer
Ira, +1, but can you provide a link showing how this is done? I use XMLSpy, but didn't know about this. – John Saunders Apr 19 '11 at 19:00
feedback

You should add RapidXML and these:

Ultra-portable, small complex config file library in ANSI C?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.