Posted By:
Robert_Lybarger
Posted On:
Tuesday, November 6, 2007 09:00 AM
You really need to find a tutorial on using a SAX parser. In SAX, you don't just "access the tags" at whim like you do in a DOM model unless you keep track of the data you are interested in on your own. SAX works effectively like an event/callback mechanism ... it lets you know that it finds a tag in an XML document source as it finds them during parsing.