| |
GeekInterview.com > Interview Questions > Programming > XML
| Print | |
Question: XML Parsers
Answer: What are the different kind of parsers used in XML? |
| September 09, 2009 03:16:53 |
#3 |
| Shasra |
Member Since: September 2009 Total Comments: 1 |
RE: XML Parsers |
There are 2 parsers:
1) DOM (Document object model): This will interpret Complete XML document.Microsoft major concentration is DOM Parser.
2) SAX Parser (Simple Aplication programming Interface for XML): This will interpret XML document based on the event occurrence only, it wont interpret complete document at a time. Sun mycrosystems major concentration is SAX Parser. |
| |
Back To Question | |