Hi everyone, I'm upgrading from Xerces-C version 2.1 to Xerces-C version 3.1.3 and I noticed that existing code that look like so:
doc->createElement("nodeName"); End up create the following XML element which breaks the parser later on when I try to parse this data: <nodeName xmlns=""> This was not the case in 2.1 and i think what I need to do is use doc->createElementNS(). Is this the case? If so this will be a lot of work and is something I want to avoid. Can someone tell me if there is a way I can maintain the old functionality or explain to me what's going on here? Thanks Steve