将XML反序列化为C#Object返回空值

时间:2014-09-04 02:26:18

标签: c# asp.net .net xml

尝试从WebService获取XML文本中的值时,值为null,如下图所示。

代码

string texto = 
    "<?xml version=\"1.0\"?>" + 
    "<EnviarLoteRpsResposta xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">"+
    "   <NumeroLote>3774</NumeroLote>" +
    "   <DataRecebimento>2014-09-03T23:03:57.3428675-03:00</DataRecebimento>" +
    "   <Protocolo>635453822373428675</Protocolo>" +
    "</EnviarLoteRpsResposta>";

XmlRootAttribute rootAttribute = new XmlRootAttribute("EnviarLoteRpsResposta");
XmlSerializer serializer = new XmlSerializer(typeof(WS.NF.EnviarLoteRpsResposta), rootAttribute);
WS.NF.EnviarLoteRpsResposta ei = (WS.NF.EnviarLoteRpsResposta)serializer.Deserialize(new StringReader(texto)); 

返回变种ei

enter image description here

修改

从我看到的情况来看,返回不是ListaMensagemRetorno字段。这是问题吗?

服务参考

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.33440")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.e-governeapps2.com.br/")]
public partial class EnviarLoteRpsResposta {

    private System.Nullable<ulong> numeroLoteField;

    private System.Nullable<System.DateTime> dataRecebimentoField;

    private string protocoloField;

    private MensagemRetorno[] listaMensagemRetornoField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
    public System.Nullable<ulong> NumeroLote {
        get {
            return this.numeroLoteField;
        }
        set {
            this.numeroLoteField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
    public System.Nullable<System.DateTime> DataRecebimento {
        get {
            return this.dataRecebimentoField;
        }
        set {
            this.dataRecebimentoField = value;
        }
    }

    /// <remarks/>
    public string Protocolo {
        get {
            return this.protocoloField;
        }
        set {
            this.protocoloField = value;
        }
    }

    /// <remarks/>
    public MensagemRetorno[] ListaMensagemRetorno {
        get {
            return this.listaMensagemRetornoField;
        }
        set {
            this.listaMensagemRetornoField = value;
        }
    }
}

1 个答案:

答案 0 :(得分:5)

问题

根据您的示例,此处的问题是您在尝试反序列化的XML字符串和反序列化的对象本身之间有不同的XML Namespace声明。

在XML字符串中,XML没有EnviarLoteRpsResposta的XML命名空间声明(没有默认命名空间):

string texto = 
    "<?xml version=\"1.0\"?>" + 
    "<EnviarLoteRpsResposta xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">"+
    "   <NumeroLote>3774</NumeroLote>" +
    "   <DataRecebimento>2014-09-03T23:03:57.3428675-03:00</DataRecebimento>" +
    "   <Protocolo>635453822373428675</Protocolo>" +
    "</EnviarLoteRpsResposta>";

EnviarLoteRpsResposta类中,XML命名空间被声明为http://www.e-governeapps2.com.br/

...
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.e-governeapps2.com.br/")]
public partial class EnviarLoteRpsResposta { ... }  


解决方法

为了使反序列化起作用,您需要执行以下 ONE

  1. 更改EnviarLoteRpsResposta类并删除XML命名空间声明:

    ...
    /* REMOVED [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.e-governeapps2.com.br/")] */
    public partial class EnviarLoteRpsResposta { ... }
    
  2. 或者......更改Web服务并将相应的XML命名空间添加到返回的XML字符串中:

    string texto = 
        "<?xml version=\"1.0\"?>" + 
        "<EnviarLoteRpsResposta 
           xmlns=\"http://www.e-governeapps2.com.br/\" 
           xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" 
           xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">"+
        "   <NumeroLote>3774</NumeroLote>" +
        "   <DataRecebimento>2014-09-03T23:03:57.3428675-03:00</DataRecebimento>" +
        "   <Protocolo>635453822373428675</Protocolo>" +
        "</EnviarLoteRpsResposta>";  
    

    然后稍微更改代码以将XML字符串反序列化为:

     ...
     XmlRootAttribute rootAttribute = new XmlRootAttribute("EnviarLoteRpsResposta") { Namespace = "http://www.e-governeapps2.com.br/" };         
     ...
    
  3. 或者......更改用于反序列化XML字符串的代码,并以programmaticaly方式添加适当的XML命名空间(不更改为EnviarLoteRpsResposta类或Web服务):

    ...
    NameTable nt = new NameTable();
    XmlNamespaceManager nsmgr = new XmlNamespaceManager(nt);
    nsmgr.AddNamespace(String.Empty, "http://www.e-governeapps2.com.br/");
    XmlParserContext context = new XmlParserContext(nt, nsmgr, null, XmlSpace.None);
    
    XmlRootAttribute rootAttribute = new XmlRootAttribute("EnviarLoteRpsResposta") { Namespace = "http://www.e-governeapps2.com.br/" };
    XmlSerializer serializer = new XmlSerializer(typeof(WS.NF.EnviarLoteRpsResposta), rootAttribute);
    WS.NF.EnviarLoteRpsResposta ei = (WS.NF.EnviarLoteRpsResposta)serializer.Deserialize(new XmlTextReader(texto, XmlNodeType.Element, context));
    ...