XML字符串中包含自定义命名空间的XmlDocument会导致XmlException?

时间:2012-11-02 08:39:38

标签: c# .net xml-parsing xml-namespaces xmlexception

我需要创建一个XmlDocument,部分是使用旧的XML,部分是通过创建新的。问题是旧的XML包含自定义命名空间,我似乎无法使用它们,因为我得到了一个XmlException。我试图将命名空间添加到许多不同的地方,但我无法克服异常!

例外

System.Xml.XmlException was unhandled by user code
    Message='my' is an undeclared prefix. Line 1, position 42.
    Source=System.Xml

我的代码

XmlDocument doc = new XmlDocument();
XmlSchema schema = new XmlSchema();
schema.Namespaces.Add("my", "http://foobar.com/");
doc.Schemas.Add(schema);
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
doc.AppendChild(dec);

XmlElement root = doc.CreateElement("root");
root.SetAttribute("xmlns:my", "http://foobar.com/");
doc.AppendChild(root);

foreach (var item in GetItems())
{
    XmlElement elem = doc.CreateElement("item");
    elem.SetAttribute("id", item.id);

    // Append body to elem
    XmlElement body = doc.CreateElement("body");
    body.InnerXml = item.Body; // Here is where I get the exception

    elem.AppendChild(body);

    // Append elem to root
    root.AppendChild(elem);
}

Item.Body的输入类似于

<aaa><bbb my:attr="55">Foo</bbb></aaa>

我希望输出类似于

<?xml version="1.0" encoding="utf-8"?>
<root my:attr="http://foobar.com/">
  <item id="12345">
    <body>
        <aaa>
            <bbb my:attr="55">Foo</bbb>
        </aaa>
    </body>
  </item>
</root>

我愿意接受使用此方法的替代方法。在我创建XmlDocument之后,我将其打印出来,根据模式对其进行验证,然后将其推出以供用户查看。

1 个答案:

答案 0 :(得分:0)

以下是一种解决方法,我能想出最好的结果:

 XNamespace  my = "http://foobar.com/";

 var doc = new XDocument(new XElement("root", 
                new XAttribute(XNamespace.Xmlns +  "my", my)));

 var body = new XElement("body");
 doc.Root.Add(new XElement("item", new XAttribute("id", 12345), body));

 string innerItem = @"<aaa><bbb my:attr=""55"">Foo</bbb></aaa>";       
 string itemWrap = @"<wrap xmlns:my=""http://foobar.com/"">" + innerItem + "</wrap>";

 XElement item = XElement.Parse(itemWrap);
 body.Add(item.Element("aaa"));

 Console.WriteLine(doc);