Klaus Schipany wrote:
> 
> I have some questions about Xerces-C++ (Version 1.1.0-d15) and I
> really hope that someone will give me an answer.
> 
> How can I create my own DOM_Nodes or DOM_Elements?

You can use methods on DOM_Document to create new content and then
insert it in the right place. Check out 

createElement (const DOMString &tagName)
createTextNode (const DOMString &data)

You can find out the correct document to use by grabbing a node in it
and then using DOM_Node::getOwnerDocument().

Is this what you wanted to do?

Mike.

-- 
Mike Mason, Software Engineer
XML Script Development Team                    Office: 44-1865-203192
http://www.xmlscript.org/                      Mobile: 44-7050-288923

Reply via email to