我想用JSON返回格式制作REST Web服务。实际上它适用于一个简单的字符串返回类型,但是当我有一个自定义类型作为返回值时,我收到0字节。
如果我将ResponseFormat更改为XML,它可以正常工作
感谢您的帮助!
编辑 - 添加样本
接口:
[WebGet(UriTemplate="WebGetTry/{param1}/{param2}", ResponseFormat=WebMessageFormat.Json)]
WebGetType WebGetTry(string param1, string param2);
实现:
public WebGetType WebGetTry(string param1, string param2) {
return new WebGetType();
}
之后我的测试很简单,从IE调用地址。返回页面无法显示错误
答案 0 :(得分:0)
您需要指定JSON端点的实现。请检查您的web.config并添加:
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="false" defaultOutgoingResponseFormat="Json"/>
</webHttpEndpoint>
</standardEndpoints>