faqts : Computers : Internet : Web : XML

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

29 of 31 people (94%) answered Yes
Recently 10 of 10 people (100%) answered Yes

Entry

What is SAX?

Nov 21st, 2000 07:01
Michael Claßen,


SAX stands for Simple API for XML. It is a de-facto standard interface
for an XML parser to turn an XML document into a sequence of events,
such as "encountered start tag <name>", "encountered text", and so on.
This is a good way for processing large XML documents where not much
cross-referencing is needed. For random-access to an XML document one
should look at DOM instead.