4

我正在我现有的类上使用反射提供程序(http://msdn.microsoft.com/en-us/library/dd728281.aspx)构建 WCF 数据服务(使用 .net 4.5 VS 2012)。我可以在请求标头中使用“Accept: application/atom+xml”成功访问该服务。但是,在请求标头中将“接受”更改为“应用程序/json”时出现错误“请求的媒体类型不支持”。据了解,WCF数据服务支持JSON,我应该怎么做才能在服务上启用查询json数据?

谢谢

编辑:我在下面粘贴我的代码:首先我定义了 Product 类:

[DataServiceKeyAttribute("Id")]
public class Product
{
    public int Id { get; set; }
    public int Price { get; set; }
    public string Name { get; set; }
}

然后我定义了我的 ProductContext 类:

public class ProductContext
{
    private List<Product> products = new List<Product>();

    public ProductContext()
    {

        for (int i = 0; i < 100; i++)
        {
            var product = new Product();
            product.Id = i;
            product.Name = "ID - " + i.ToString();
            product.Price = i + 100;
            products.Add(product);
        }
    }

    public IQueryable<Product> Products
    {
        get
        {
            return products.AsQueryable();
        }
    }
}

和我的 ProductService.svc.cs

[System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class ProductsService : DataService<ProductContext>
{
    // This method is called only once to initialize service-wide policies.
    public static void InitializeService(DataServiceConfiguration config)
    {
        // TODO: set rules to indicate which entity sets and service operations are visible, updatable, etc.
        // Examples:
        config.SetEntitySetAccessRule("Products", EntitySetRights.AllRead);
        //config.SetServiceOperationAccessRule("MyServiceOperation", ServiceOperationRights.All);
        config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V3;
    }
}
4

3 回答 3

4

如果您使用的是 WCF 数据服务 5.0,请查看这篇解释 JSON 支持更改的博客文章:http: //blogs.msdn.com/b/astoriateam/archive/2012/04/11/what-happened -to-application-json-in-wcf-ds-5-0.aspx

于 2012-10-20T14:20:34.587 回答
2

tl;dr: 添加一个请求头

最大数据服务版本:2.0

于 2012-11-12T20:36:59.077 回答
2

如果您使用的是较新版本的 WCF 数据服务,您可能需要使用以下 Accept 标头:Accept: application/json;odata=verbose,text/plain

这允许对标量查询(如 )进行纯文本响应$count,并且还指定 JSON 的详细版本。我正在使用 WCF Data Services 5.3,这是我发现的必要条件。我也见过Accept: application/json;odata=light,但我个人不需要,因为 odata 的详细版本运行良好。

于 2013-06-20T22:51:20.240 回答