I have an \[code\]XmlDocument\[/code\] object (not a file, not a string) and need few modifications on it. I accomplished adding prefixes, etc, but cannot remove namespace from a node. The XML structure is below:\[code\]<soapenv:Envelope xmlns:soapenv="http://env" xmlns:xsd="http://xsd" xmlns:xsi="http://xsi" xmlns:v1="http://v1"> <soapenv:Body> <v1:VM xmlns="http://v1"> <SH> <a>aa</a> <b>bb</b> </SH> </v1:VM> </soapenv:Body></soapenv:Envelope>\[/code\]I want to remove xmlns="http://v1" attribute from the v1:VM element. Is that possible with XmlDocument object or its properties? I tried removing Attributes from the relevant XmlNode but did not succeed.