tags:

views:

64

answers:

1

Hello all.

I'm trying to find a good and effective way to parse an XML data structure that different API calls are returning. The problem is that each time I need different data and each time I'm getting a different XML structure. Which is better: to use the SAX approach or The DOM approach? Does QT 4.6 recommend or work better with one of the approaches?

Thanks

A: 

Take a look at this SO question and its answers. The magic word is XPath queries and QT 4.6 has support for it.

Frank Bollack