This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Sorry, to ask such a basic question. But does somebody knows what does the phrase "JAXP-compliant XML parser " means? Is it DOM or SAX parser? or does it represents both?
Regards mini
Lasse Koskela
author
Sheriff
Joined: Jan 23, 2002
Posts: 11962
5
posted
0
JAXP is a standard API for processing XML documents in Java using both DOM and SAX. Thus, a JAXP-compliant parser would be a parser that implements the hooks required by the JAXP specification so that the developer can write his XML processing code without importing any parser-specific packages -- the implementation is selected at runtime and used through these "hooks" behind the scenes.