How to deserialize an XML doc with a prefixed namespace but no ns-prefixed elements?

时光怂恿深爱的人放手 提交于 2019-12-01 08:04:49

问题


I have an XML document from an external source.

<?xml version="1.0" encoding="utf-8"?>
<ns0:Info xmlns:ns0="http://www.ZomboCorp.com/">
  <Name>Anthony</Name>
  <Job>Developer</Job>
</ns0:Info>

I need to deserialize it into an object like this.

public class Info
{
    public String Name { get; set; }
    public String Job { get; set; }
}

Used as is, the Serializer throws an InvalidOperationException

<Info xmlns='http://www.ZomboCorp.com/'> was not expected.

If I add [XmlElement(Namespace = "http://www.ZomboCorp.com/")] to the class definition, the Serializer returns a new Info object with null properties.


回答1:


You have to add the XmlElement attribute to each property as well, setting the Namespace property to an empty string (as the namespace is not inherited in your situation).

Your definition for Info should look like this:

XmlRoot(Namespace = "http://www.ZomboCorp.com/")]
public class Info
{
    [XmlElement(Namespace = "")]
    public String Name { get; set; }
    [XmlElement(Namespace = "")]
    public String Job { get; set; }
}

Then it will deserialize correctly.




回答2:


I used xsd.exe (a VS tool) and generated a schema from the XML file and then a class file from the schema. It suggested

[XmlType(AnonymousType = true, Namespace = "http://www.ZomboCorp.com/")]
[XmlRoot(Namespace = "http://www.ZomboCorp.com/", IsNullable = false)]
public class Info
{
    [XmlElement(Form = XmlSchemaForm.Unqualified)]
    public String Name { get; set; }
    [XmlElement(Form = XmlSchemaForm.Unqualified)]
    public String Job { get; set; }
}

But, I was able to get away with

[XmlType(AnonymousType = true)]
[XmlRoot(Namespace = "http://www.ZomboCorp.com/")]
public class Info
{
    [XmlElement(Form = XmlSchemaForm.Unqualified)]
    public String Name { get; set; }
    [XmlElement(Form = XmlSchemaForm.Unqualified)]
    public String Job { get; set; }
}


来源:https://stackoverflow.com/questions/465825/how-to-deserialize-an-xml-doc-with-a-prefixed-namespace-but-no-ns-prefixed-eleme

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!