How can I convert DOMNode value (with all child nodes) to char*? I need something like this:
DOMNode *dn;
...
//Do something with "dn" node
...
char* xmlFile = dn->AsXML(); //it should return whole xml file - all values of all child nodes of "dn" element
return xmlFile;
Thank you.
