I want to remove the node below called outerNode but it is not working, any ideas.

 

 

xercesc::DOMNode* docNode = xmlDoc->getDocumentElement();

 

DOMNodeList* list = docNode->getChildNodes();

DOMNode* outerNode = NULL;

 

outerNode = list->item(i);

 

docNode->removeChild(outerNode);

 

 

Any ideas why?

Enda

 

 

 

Reply via email to