Introduction
There were 2 main XML parsing technologies few years ago. They were SAX and DOM.

SAX is event-driven and the events are fired and forget along the xml parsing. Advantages: It doesn’t need to cache the whole xml document in memory and you don’t need to wait til the whole xml been parsed before the first [...]

Continue reading " Evolution of XML parsing technologies "