> My problem is that this getXercesNode returns a const DOMElement *. Now I > can const_cast it and use all the functions. But I'm skeptical.
About what? That you can do the const_cast? Since the wrapper classes don't modify the underlying Xerces document, they keep const pointers. If you know the DOMDocument you passed in can be modified, you can do the const_cast, and modify the node all you want. Dave
