Evolution of XML parsing technologies
Posted by admin on July 16, 2008
0 comments
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 [...]