I am looking for the clean, elegant and smart solution to remove namespacees from all XML elements? How would function to do that look like?

Defined interface:

public interface IXMLUtils
{
        string RemoveAllNamespaces(string xmlDocument);
}

Sample XML to remove NS from:

<?xml version="1.0" encoding="utf-16"?>
<ArrayOfInserts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <insert>
    <offer xmlns="http://schema.peters.com/doc_353/1/Types">0174587</offer>
    <type2 xmlns="http://schema.peters.com/doc_353/1/Types">014717</type2>
    <supplier xmlns="http://schema.peters.com/doc_353/1/Types">019172</supplier>
    <id_frame xmlns="http://schema.peters.com/doc_353/1/Types" />
    <type3 xmlns="http://schema.peters.com/doc_353/1/Types">
      <type2 />
      <main>false</main>
    </type3>
    <status xmlns="http://schema.peters.com/doc_353/1/Types">Some state</status>
  </insert>
</ArrayOfInserts>

After we call RemoveAllNamespaces(xmlWithLotOfNs), we should get:

  <?xml version="1.0" encoding="utf-16"?>
    <ArrayOfInserts>
      <insert>
        <offer >0174587</offer>
        <type2 >014717</type2>
        <supplier >019172</supplier>
        <id_frame  />
        <type3 >
          <type2 />
          <main>false</main>
        </type3>
        <status >Some state</status>
      </insert>
    </ArrayOfInserts>

Preffered language of solution is C# on .NET 3.5 SP1.

link|improve this question

feedback

11 Answers

up vote 16 down vote accepted

Well, here is the final answer. I have used great Jimmy idea (which unfortunately is not complete itself) and complete recursion function to work properly.

Based on interface:

string RemoveAllNamespaces(string xmlDocument);

I represent here final clean and universal C# solution for removing XML namespaces:

//Implemented based on interface, not part of algorithm
public static string RemoveAllNamespaces(string xmlDocument)
{
    XElement xmlDocumentWithoutNs = RemoveAllNamespaces(XElement.Parse(xmlDocument));

    return xmlDocumentWithoutNs.ToString();
}

//Core recursion function
 private static XElement RemoveAllNamespaces(XElement xmlDocument)
    {
        if (!xmlDocument.HasElements)
        {
            XElement xElement = new XElement(xmlDocument.Name.LocalName);
            xElement.Value = xmlDocument.Value;

            foreach (XAttribute attribute in xmlDocument.Attributes())
                xElement.Add(attribute);

            return xElement;
        }
        return new XElement(xmlDocument.Name.LocalName, xmlDocument.Elements().Select(el => RemoveAllNamespaces(el)));
    }

It's working 100%, but I have not tested it much so it may not cover some special cases ... But it is good base to start.

link|improve this answer
2  
How well does that work with attributes that have namespaces? In fact, your code just ignores attributes entirely. – John Saunders Jun 15 '09 at 13:46
2  
I realize namespaces may be useful in some applications, but not at all in mine; they were causing a huge annoyance. This solution worked for me. – JYelton Mar 10 '10 at 19:49
+1 brilliant! Thanks. – Morawski Sep 28 '11 at 12:48
@John Saunders - Yeah I used that solution and I realized you were right. I'm posting an updated solution as an answer – Morawski Sep 28 '11 at 14:47
This solution did NOT work for me, as the code removes all attributes as well as the namespaces. Of course, a few changes might work to see if the attribute being removed is a namespace or attribute – bigfoot Feb 24 at 13:58
feedback

the obligatory answer using LINQ:

static XElement stripNS(XElement root) {
    return new XElement(
        root.Name.LocalName,
        root.HasElements ? 
            root.Elements().Select(el => stripNS(el)) :
            (object)root.Value
    );
}
static void Main() {
    var xml = XElement.Parse(@"<?xml version=""1.0"" encoding=""utf-16""?>
    <ArrayOfInserts xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"">
      <insert>
        <offer xmlns=""http://schema.peters.com/doc_353/1/Types"">0174587</offer>
        <type2 xmlns=""http://schema.peters.com/doc_353/1/Types"">014717</type2>
        <supplier xmlns=""http://schema.peters.com/doc_353/1/Types"">019172</supplier>
        <id_frame xmlns=""http://schema.peters.com/doc_353/1/Types"" />
        <type3 xmlns=""http://schema.peters.com/doc_353/1/Types"">
          <type2 />
          <main>false</main>
        </type3>
        <status xmlns=""http://schema.peters.com/doc_353/1/Types"">Some state</status>
      </insert>
    </ArrayOfInserts>");
    Console.WriteLine(stripNS(xml));
}
link|improve this answer
Does that really work? How cool. Recursive? – Robert Harvey Jun 12 '09 at 15:47
I guess you can show the VB folks you can have an XML literal in C# after all. – Robert Harvey Jun 12 '09 at 15:48
@Robert, that's not an XML literal. It's a string. There's a big difference! – Dennis Palmer Jun 12 '09 at 17:16
Jimmy, you are close but not there yet. :) I am writing final solution based on your idea. I will post it there. – Peter Stegnar Jun 12 '09 at 18:23
you're right :) while you're at it, I offer my own version of the fix. – Jimmy Jun 12 '09 at 20:24
show 2 more comments
feedback

The obligatory answer using XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="no" encoding="UTF-8"/>

  <xsl:template match="/|comment()|processing-instruction()">
    <xsl:copy>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="*">
    <xsl:element name="{local-name()}">
      <xsl:apply-templates select="@*|node()"/>
    </xsl:element>
  </xsl:template>

  <xsl:template match="@*">
    <xsl:attribute name="{local-name()}">
      <xsl:value-of select="."/>
    </xsl:attribute>
  </xsl:template>

</xsl:stylesheet>
link|improve this answer
+1 for the "obligatory". :-) I still wonder why removing namespaces would be a smart decision. This probably crashes and burns on <element ns:attr="a" attr="b"/>. – Tomalak Jun 12 '09 at 16:53
Oh sure, but every NS removing technique will to a greater or lesser extent. As or validity, I can tell you where I have needed it: importing third party XML where they can't sort out a valid XSD but insist on namespacing. Practicality rules ultimately. – annakata Jun 12 '09 at 18:51
@annakata: Namespaces are perfectly usable without XSD, and very useful where nodes come from multiple sources. You just have to remember that nodes are named by namespace+localname always (and the namespace tag (or prefix) is just a local document detail). – Richard Jun 13 '09 at 8:05
@Richard - this entirely depends on what you have parsing the XML... – annakata Jun 13 '09 at 8:32
1  
@John - ha, there are those things which should be done, and there are those things which the management deems will be done. All is for the best in the best of all possible worlds. – annakata Jun 15 '09 at 14:04
show 1 more comment
feedback

Pick it up again, in C# - added line for copying the attributes:

    static XElement stripNS(XElement root)
    {
        XElement res = new XElement(
            root.Name.LocalName,
            root.HasElements ?
                root.Elements().Select(el => stripNS(el)) :
                (object)root.Value
        );

        res.ReplaceAttributes(
            root.Attributes().Where(attr => (!attr.IsNamespaceDeclaration)));

        return res;
    }
link|improve this answer
feedback

The tagged most useful answer has two flaws:

  • It ignores attributes
  • It doesn't work with "mixed mode" elements

Here is my take on this:

public static XElement RemoveAllNamespaces(XElement e)
{
    return new XElement(e.Name.LocalName,
       (from n in e.Nodes() 
           select ((n is XElement) ? RemoveAllNamespaces(n as XElement) : n)),
       (e.HasAttributes) ? (from a in e.Attributes() select a) : null);
}            
link|improve this answer
feedback

Regular Expressions to the rescue!!!

string XMLPattern = "xmlns=\\\".+\\\"";
Regex regXML = new Regex(pattern);

string XMLInput = FancyMethodThatPutsXMLIntoString();
string Results = regXML.Replace(XMLInput, "");

Note: The triple slashes serve to escape the escaping of the quotes for your regex formula. Technically the formula is xmlns=\".+\"

link|improve this answer
6  
Hm... What about "<element><![CDATA[ xmlns="asdasd" ]]></element>"? Trying to process XML with text tools like regex is futile and should be avoided like the plague. – Tomalak Jun 12 '09 at 16:56
1  
And independently of that, your regex is wrong as well. Had you tested it, you would have noticed. – Tomalak Jun 12 '09 at 17:00
1  
You don't need the extra escaping in your regex, use a litteral string @"..." instead. – Richard Jun 13 '09 at 8:04
3  
"Regular Expressions to the rescue!!!" ...so now you have two problems. – jasso Oct 8 '10 at 16:12
Ugh. The war cry of the mediocre. "I don't understand regexs...so now I still have a problem." – annakata Oct 8 '10 at 21:27
show 1 more comment
feedback

I know this question is supposedly solved, but I wasn't totally happy with the way it was implemented. I found another source over here on the MSDN blogs that has an overridden XmlTextWriter class that strips out the namespaces. I tweaked it a bit to get some other things I wanted in such as pretty formatting and preserving the root element. Here is what I have in my project at the moment.

http://blogs.msdn.com/b/kaevans/archive/2004/08/02/206432.aspx

Class

/// <summary>
/// Modified XML writer that writes (almost) no namespaces out with pretty formatting
/// </summary>
/// <seealso cref="http://blogs.msdn.com/b/kaevans/archive/2004/08/02/206432.aspx"/>
public class XmlNoNamespaceWriter : XmlTextWriter
{
    private bool _SkipAttribute = false;
    private int _EncounteredNamespaceCount = 0;

    public XmlNoNamespaceWriter(TextWriter writer)
        : base(writer)
    {
        this.Formatting = System.Xml.Formatting.Indented;
    }

    public override void WriteStartElement(string prefix, string localName, string ns)
    {
        base.WriteStartElement(null, localName, null);
    }

    public override void WriteStartAttribute(string prefix, string localName, string ns)
    {
        //If the prefix or localname are "xmlns", don't write it.
        //HOWEVER... if the 1st element (root?) has a namespace we will write it.
        if ((prefix.CompareTo("xmlns") == 0
                || localName.CompareTo("xmlns") == 0)
            && _EncounteredNamespaceCount++ > 0)
        {
            _SkipAttribute = true;
        }
        else
        {
            base.WriteStartAttribute(null, localName, null);
        }
    }

    public override void WriteString(string text)
    {
        //If we are writing an attribute, the text for the xmlns
        //or xmlns:prefix declaration would occur here.  Skip
        //it if this is the case.
        if (!_SkipAttribute)
        {
            base.WriteString(text);
        }
    }

    public override void WriteEndAttribute()
    {
        //If we skipped the WriteStartAttribute call, we have to
        //skip the WriteEndAttribute call as well or else the XmlWriter
        //will have an invalid state.
        if (!_SkipAttribute)
        {
            base.WriteEndAttribute();
        }
        //reset the boolean for the next attribute.
        _SkipAttribute = false;
    }

    public override void WriteQualifiedName(string localName, string ns)
    {
        //Always write the qualified name using only the
        //localname.
        base.WriteQualifiedName(localName, null);
    }
}

Usage

//Save the updated document using our modified (almost) no-namespace XML writer
using(StreamWriter sw = new StreamWriter(this.XmlDocumentPath))
using(XmlNoNamespaceWriter xw = new XmlNoNamespaceWriter(sw))
{
    //This variable is of type `XmlDocument`
    this.XmlDocumentRoot.Save(xw);
}
link|improve this answer
feedback

What are you trying to accomplish? I've never seen a case where removing namespaces was "smart".

The namespace+local name is the identify of the element or attribute. Removing the namespace would remove half the identity. You may have the first example I've seen where this is a good idea, but if so, please tell me why it makes sense.

link|improve this answer
Yes, I understand your concern. Namespaces are meant to be, but I have special case. I am working on integration service which connect some BPM tool with 3th party WebService. I have to do deserialization from BPM tool's type xml to WebService type. Both have the same schema (with different namespace of course), but as you can see BPM tool messes with namespaces, which makes deserialization to WS type impossible. – Peter Stegnar Jun 12 '09 at 17:48
That's what XSLT has been developed for. I recommend an XSL transformation that changes unsuitable input (wrong namespaces or structure) into useful input (right namespaces or structure), instead of simply ripping out namespaces. – Tomalak Jun 12 '09 at 18:15
Generally I agree with you, I could also done this with XSLT and this may be more right. But I wanted to find some clean solution in code. This question is not what is the right way to make XML transformations with (obviously with XSL). – Peter Stegnar Jun 12 '09 at 19:03
Why do they have the "same schema" but with different namespaces? Why isn't one of them using the schema from the other? Besides, in this case, rather than removing namespaces, I'd consider defining a third namespace and mapping from each into this third schema. The third schema would be the one you depend on. – John Saunders Jun 12 '09 at 20:29
1  
@Peter Stegnar: XSLT is not some dirty hack. It is the cleanest method of handling XML transformation, I would say that everything else is inferior. – Tomalak Jun 15 '09 at 9:02
show 2 more comments
feedback

The reply's by Jimmy and Peter were a great help, but they actually removed all attributes, so I made a slight modification:

Imports System.Runtime.CompilerServices

Friend Module XElementExtensions

    <Extension()> _
    Public Function RemoveAllNamespaces(ByVal element As XElement) As XElement
        If element.HasElements Then
            Dim cleanElement = RemoveAllNamespaces(New XElement(element.Name.LocalName, element.Attributes))
            cleanElement.Add(element.Elements.Select(Function(el) RemoveAllNamespaces(el)))
            Return cleanElement
        Else
            Dim allAttributesExceptNamespaces = element.Attributes.Where(Function(attr) Not attr.IsNamespaceDeclaration)
            element.ReplaceAttributes(allAttributesExceptNamespaces)
            Return element
        End If

    End Function

End Module
link|improve this answer
feedback

To those people who would like to use the Regex approach, because perhaps they are using an older version of .NET without the XElement object, here is a correction to the solution posted above by Dillie-O

  /// <summary>
  /// Strips the XML namespaces.
  /// </summary>
  /// <param name="xml">The XML.</param>
  /// <returns></returns>
  private static string StripXmlNameSpaces(string xml)
  {
    const string strXMLPattern = @"xmlns(:\w+)?="".+""";
     return Regex.Replace(xml, strXMLPattern, "");
  }

I understand that this method will also strip XMLNS tags from text held in CDATA blocks, so if your XML contains this, then do not use this approach.

link|improve this answer
feedback

And this is the perfect solution that will also remove XSI elements. (If you remove the xmlns and don't remove XSI, .Net shouts at you...)

            string xml = node.OuterXml;
            //Regex below finds strings that start with xmlns, may or may not have :and some text, then continue with =
            //and ", have a streach of text that does not contain quotes and end with ". similar, will happen to an attribute
            // that starts with xsi.
            string strXMLPattern = @"xmlns(:\w+)?=""([^""]+)""|xsi(:\w+)?=""([^""]+)""";
            xml = Regex.Replace(xml, strXMLPattern, "");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.