如何调整 WCF REST 中的默认 JSON 序列化器
WCF REST 服务工作得很好,它会根据标头回复/接受 JSON 或 XML。
我想稍微调整一下内置的 JSON 序列化器,以便它对 Byte[] 进行编码/解码略有不同。更具体地说,我想使用 Base64 来实现这一点。
是否有任何指针/示例可以在其中设置会影响整个服务的自定义类型序列化器?
WCF REST service works great in a way that it will reply/accept JSON or XML depending on header.
I want to tweak built-in JSON serializer a little so it encodes/decodes Byte[] little different. More specifically, I want to use Base64 for that.
Is that any pointers/samples where I can set custom type serializer that will affect whole service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该帖子位于 http:// blogs.msdn.com/b/carlosfigueira/archive/2011/05/03/wcf-extensibility-message-formatters.aspx 显示了如何将默认 JSON 序列化器 (DataContractJsonSerializer) 替换为自定义序列化器(在本例中为 JSON.NET)。
The post at http://blogs.msdn.com/b/carlosfigueira/archive/2011/05/03/wcf-extensibility-message-formatters.aspx shows how to replace the default JSON serializer (DataContractJsonSerializer) with a custom one (in this case, JSON.NET).
我刚刚使用 NETFx Json 在 WCF REST 服务 4.0 中成功地用 JSON.NET 序列化器替换了默认的 DataContractJsonSerializer .NET MediaTypeFormatter 。另请参阅用于 WCF REST 服务的 JSON.NET 序列化程序,了解以下问题的解决方案:我为了让它工作而遇到的一个问题。
I just succeeded swapping out the default DataContractJsonSerializer with JSON.NET serializer in my WCF REST services 4.0 using NETFx Json.NET MediaTypeFormatter . Also see JSON.NET Serializer for WCF REST Services for the solution to a problem I ran into to get this working.