Introduction to DOM -- "What is the Document Object Model" introduction at: http://www.w3.org/TR/REC-DOM-Level-1/introduction.html and there is the W3C site for all that is DOM: http://www.w3.org/DOM/

SAX DOM Parsers lots of parsers at http://www.xmlsoftware.com/parsers/
XML is a mechanism for serializing an object tree, while object trees are a mechanism for compiling XML documents

Here's a good site: http://www.stud.ifi.uio.no/~lmariusg/linker/XMLtools.html Scroll down to the site Table of Contents; in the Parsers and Engines category, select "XML Parsers." Links take you to download/info pages.

Have a look at the parser conformance test results on at http://home.pacbell.net/david-b/xml/ Those are for SAX interfaces, but many of the packages that can produce a DOM tree use the same core engine that the SAX API excercises. That is, the same level of XML conformance will normally come through DOM.

Two parser styles are available DOM and SAX, DOM builds a tree, SAX provides interrupts and data for processing applications like browsers. http://www.w3.org/DOM/ http://www.w3.org/TR/NOTE-SOX/ http://lists.w3.org/Archives/Public/www-dom/ http://www.megginson.com/SAX/

The DOM is a generic object model for XML documents, but when you already have a domain-specific object model, it will usually be more efficient -- in those cases, people tend to use an event-based API like SAX to build their object trees directly, eliminating the middle DOM phase.

www.XML.com published a comparision of parsers, you may want to take a look there. http://www.xml.com/pub/Benchmark/exec.html

Dean Roddey The CIDLib Class Libraries Charmed Quark Software http://www.charmedquark.com Rodney wrote the IBM XML4C parser www.alphaworks.ibm.com -> go to xml

libxml-perl software works in combination with XML::Parser, PerlSAX, XML::DOM, XML::Grove, and others.
<http://www.perl.org/CPAN/modules/by-module/XML/>
HTML-rendered PODs can be found on the home page, <http://bitsko.slc.ut.us/libxml-perl/>

IE5 MSXML Parser. "XML-Data" -- note that the information on http://msdn.microsoft.com/xml is incomplete.

 

Which XML C/C++ parser to use?
Expat is small, fast, and stable -- it's getting a very heavy workout in the Perl community (where it's the standard Perl XML parser), so serious bugs tend to have been chased down, and it seems to operate practically at I/O speed.

On the downside, Expat is C rather than C++, so the interface is a little messy -- you might want to put together a C++ wrapper to help avoid nastier bugs.

I have no experience yet with IBM4C++, but I do know that they have an interface based on SAX as well as the DOM. It's very new, so expect bugs.--- David Megginson http://www.megginson.com/

A JSR (Java Specification Request) entitled "XML Data Binding" was submitted to the Java Community Process. From the description:

The proposed specification will define an XML data-binding facility for the Java(tm) Platform. Such a facility compiles an XML schema into one or more Java classes. These automatically-generated classes handle the translation between XML documents that follow the schema and interrelated instances of the derived classes. They also ensure that the constraints expressed in the schema are maintained as instances of the classes are manipulated.

An accompanying design note was also published on java.sun.com. For more information please see

http://java.sun.com/aboutJava/communityprocess/jsr/jsr_031_xmld.html
http://java.sun.com/xml/docs/bind.pdf

Please send formal comments on this JSR to jsr-comments@sun.com. Technical
comments and questions may be sent to xml-binding-comments@java.sun.com.

There is a long thread on using XML with Cold Fusion (with code examples) at
http://www.xmltree.com/forums/Thread.cfm?CFApp=3&Thread_ID=17&mc=22
James Carlyle -- james@xmltree.com -- www.xmltree.com - directory of XML content on the web

The DOM Level 1 does define a rows attribute on the HTMLFrameSetElement interface. See
http://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html#ID-43829095
--
Arnaud Le Hors - W3C, DOM Activity Lead - http://www.w3.org/People/Arnaud

 http://alphaworks.ibm.com/tech/xmltreediff works directly on the DOM