System.ServiceModel.dispatcher.Multiplexingdispatchmessageformatter抛出System.Collections.Generic.KeyNotFoundException.问题是,到目前为止我发现,xsd.exe不生成DataContract和DataMember属性.是否有任何解决方案,我不需要使用SvcUtil.exe,因为我需要更改我的架构..
这是失败的代码,Jsondispatchmessageformatter的类型为Multiplexingdispatchmessageformatter. (无论如何,这是默认类型)
var headers = requestProperty.headers[httpRequestheader.Accept] ?? requestProperty.headers[httpRequestheader.ContentType];if (headers != null && headers.Contains("application/Json")){ return this.Jsondispatchmessageformatter.SerializeReply(messageVersion,parameters,result);}
生成的代码:
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd","4.0.30319.33440")][System.SerializableAttribute()][System.Diagnostics.DeBUGgerStepThroughAttribute()][System.ComponentModel.DesignercategoryAttribute("code")][System.Xml.Serialization.XmlTypeAttribute(namespace="...")][System.Xml.Serialization.XmlRootAttribute(namespace="...",IsNullable=false)]public partial class IncIDent { private long incIDentIDFIEld; /// <remarks/> public long IncIDentID { get { return this.incIDentIDFIEld; } set { this.incIDentIDFIEld = value; } }}解决方法 您在JsON中看到私有字段而不是公共属性的原因是xsd.exe已使用
[SerializableAttribute]
标记了您的类.当此属性应用于某个类型时,它表示可以通过序列化所有私有和类型来序列化该类型的实例.公共领域 – 不是属性. 在幕后,WCF使用DataContractJsonSerializer
来串行化JsON.当此序列化程序为没有data contract attributes的类型生成默认的隐式数据协定时,它会注意到[Serializable]属性并尊重它,生成一个序列化和反序列化公共和私有字段的合同.这就是你所看到的.
有点奇怪的是,xsd.exe
不需要将[Serializable]添加到其生成的类中. XmlSerializer完全忽略此属性,因为它只能序列化公共成员. (它也完全忽略了数据契约属性.类似地,数据契约序列化器都忽略了XmlSerializer
control attributes.)
不幸的是,我没有看到任何xsd
command line switches禁用此属性.因此,您将要进行某种手动修复:
>从生成的类中删除[System.SerializableAttribute()].除非你在某处使用BinaryFormatter,否则这应该是无害的;你可能不是.
>将[DataContract]和[DataMember]属性添加到生成的类中. (请记住,XmlSerializer会忽略它们,因此您预先存在的XML架构将保持不变.)
>您还可以考虑使用SvcUtil.exe生成与合约相关的类,然后使用automapper将旧类映射到新类.
>或者您可以考虑切换到不同的JsON序列化程序,例如json.net,您可以在control whether to ignore or respect [Serializable]
中使用.问题How to set Json.Net as the default serializer for WCF REST service和C# WCF REST – How do you use JSON.Net serializer instead of the default DataContractSerializer?应该可以帮助您入门.
另外,如果您想要精确控制XML和JsON格式,WCF休息可能不是最适合您的技术. ASP.NET Web API允许使用json.net更精确地控制序列化格式;见JSON and XML Serialization in ASP.NET Web API以及Setting IgnoreSerializableAttribute Globally in Json.net和.NET WebAPI Serialization k_BackingField Nastiness.
总结以上是内存溢出为你收集整理的c# – 使用WCF将类序列化为xsd.exe生成的JSON全部内容,希望文章能够帮你解决c# – 使用WCF将类序列化为xsd.exe生成的JSON所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)