博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
System.InvalidOperationException : 不应有 <Response xmlns=''>。
阅读量:6718 次
发布时间:2019-06-25

本文共 948 字,大约阅读时间需要 3 分钟。

xml如下:

4700203048783633
Failed to identify the card scheme of the supplied card number
1000001
TEST
Invalid card type
21

原来的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!

 
分类: 

转载地址:http://szumo.baihongyu.com/

你可能感兴趣的文章
简单跳板机的搭建笔记
查看>>
Verizon宣布2018年将部署全国性NB-IoT网络
查看>>
python 十六进制转换十进制(MAC 转换 IP 地址)
查看>>
opensips使用加密密码认证
查看>>
静态元素过期时间
查看>>
php 解决乱码问题
查看>>
Ubuntu安装Mcafee步骤
查看>>
FTP服务器搭建下的主动模式和被动模式
查看>>
owncloud在CentOS上详细部署
查看>>
MyEclipse 代码运行生产的key
查看>>
Ubuntu下彻底删除vim
查看>>
HTML页面静态化实现
查看>>
关于selenium中断言判断url获取错误解决
查看>>
mysql的排障之二
查看>>
oracle 恢复学习 案例1 一个数据文件丢失 完全恢复数据库
查看>>
OpenStack 搭建(三)
查看>>
sendmail在企业网中的应用(下)
查看>>
zabbix日志监控
查看>>
竖直滚动 jquery 文字 图片
查看>>
设计模式系列-装饰模式
查看>>