无法从wcf json启用的服务将嵌套类型返回给客户端
我无法从wcf json服务返回嵌套类型。 当我从RestClient(firefox)获取http时,服务操作执行两次,响应主体为空。 在chrome中从url调用相同的服务返回没有收到数据。 错误324 ERR_EMPTY_RESPONSE
这是代码
[WebInvoke(Method =“GET”,ResponseFormat = WebMessageFormat.Json,RequestFormat = WebMessageFormat.Json,UriTemplate =“GetProducts / storedId”] public ServiceResponse >> GetAllProducts(string storeId){//获取db中产品列表的代码。}
[DataContract] public class Product {[DataMember] public string Name {get; 组;}
[DataMember] public IList ProductDetails {get; set;}}
有人可以建议发生了什么问题。 谢谢
我让WCF使用Json.NET(http://json.codeplex.com/)在.NET对象和JSON之间进行转换
链接地址: http://www.djcxy.com/p/45809.html上一篇: unable to return nested type to client from wcf json enabled service
下一篇: No Data Returned