无法访问wcf Web服务上的数据访问层

时间:2015-06-13 14:27:09

标签: jquery asp.net ajax web-services wcf

我使用jQuery ajax调用Web服务。我收到内部服务器错误。

[WebGet(ResponseFormat=WebMessageFormat.Json)]
[OperationContract]
public List<BrandModel> DoWork(int brandId)
{
    // here a receive a generic list of BrandModel by calling the static method FillModels. 
    List<BrandModel> models = DA.SupportData.FillModels(brandId);

    return models;
}

我试图省略调用数据访问层的语句并返回在doWork方法中创建的通用列表并且它有效。

0 个答案:

没有答案