Hello, I realize this topic was covered a bit in a thread titled "Namespace hell", however I didn't see a resolution to a lingering question. Is there any way to use the removeNamespace() method of the XML class to remove the default namespace (the namespace without a prefix)?
I would like to do this, because i have an object heirarchy which represents an unstructured XML document (not a recordset). In serializing the object structure, the new XML can get littered with namespace declares, it would be easier to simply remove the original default namespace and be done with it. Name collisions are not a concern for me, but the fact that removeNamespace() doesn't work with the default namespace is. Is there an answer other than RegEx on the xml string? Cheers, Steve

