vote up 0 vote down star

How do the SAX API-s validate XML against a schema/DTD?

My understanding is the SAX API-s read an XML doc chuck by chunk and do not store the previously read chunks in memory. So I'm not clear how the API could validate the doc without keeping it all in memory. ??

flag

79% accept rate

1 Answer

vote up 1 vote down check

You don't need to keep the whole XML tree in memory in order to validate it. Just those parts that are validated at the moment are needed to be in memory. For example, if you need to confirm to structure like that root/child*/property*, then only child-parent relationships are actually needed to be checked and thus we need to store only previous element to verify that. Of course, if sturucture is more complex, than more memory will be used to verify complex constraints.

link|flag
Certain kinds of XML Validation require access to the document in full as explained in the Drawbacks of the SAX page on Wikipedia: en.wikipedia.org/wiki/Simple_API_for_XML#Drawbacks/… – Pascal Thivent Oct 10 at 19:20
@Pascal, the link above says that validation of ID/IDREF relationship will require only the full list of IDs and IDREFs to be kept in memory, but not the full document. – Superfilin Oct 10 at 20:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.