zoukankan      html  css  js  c++  java
  • System.InvalidOperationException : 不应有 <Response xmlns=''>。

    xml如下:

    复制代码
    <?xml version="1.0" encoding="UTF-8"?>
    <Response version="2">
      <datacash_reference>4700203048783633</datacash_reference>
      <information>Failed to identify the card scheme of the supplied card number</information>
      <merchantreference>1000001</merchantreference>
      <mode>TEST</mode>
      <reason>Invalid card type</reason>
      <status>21</status>
      <time>1382512427</time>
    </Response>
    复制代码

    原来的Entity如下:

        [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
        [Serializable()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [XmlType(AnonymousType = true)]
        [XmlRoot(Namespace = "", IsNullable = false)]

    解决方案需要增加ElementName = "Response",如下:

        [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
        [Serializable()]
        [System.Diagnostics.DebuggerStepThroughAttribute()]
        [System.ComponentModel.DesignerCategoryAttribute("code")]
        [XmlType(AnonymousType = true)]
        [XmlRoot(Namespace = "", IsNullable = false, ElementName = "Response")]

    Done!

     
    分类: C#
  • 相关阅读:
    liunx 解压与压缩
    缓存设计与优化
    易混乱javascript知识点简要记录
    初识RedisCluster集群
    Redis Sentinel(哨兵模式)
    JavaScript作用域简单记录
    JavaScript引用类型简单记录
    redis主从复制初识
    javascript基础知识点
    持久化的一些问题
  • 原文地址:https://www.cnblogs.com/shiningrise/p/6080368.html
Copyright © 2011-2022 走看看