Anand Ravipati wrote: > > I am using XML4C v3.0.1 for WinNT4 to parse an XML document to convert the > resulting DOM tree to another tree with a different class as a node (i.e > DOM_Node in the DOM tree corresponds to My_Node in the new tree).
This seems to be a common misuse of the DOM. Unless you do something else with the DOM tree returned by the parser building one is an awful waste of time and memory. Instead, you should really build your own structure directly from the parser, using SAX. -- Arnaud Le Hors - IBM Cupertino, XML Technology Group
