XML has two different interfaces or APIs. You might ask, why do we even need an API to interface with such a simple format, never mind two?
If you accessed your XML directly, you could build a parser that would recognize tags (”<tagname>blah</tagname>”), and process them sequentially. How would you do this yourself? Well, you’d probably [...]
