WCF数据服务-“错误请求”-查询语法错误

本文关键字:错误 查询 语法 错误请求 请求 数据 WCF 服务 | 更新日期: 2023-09-27 18:16:48

我的浏览器中有这个url:

https://localhost/service.svc/Add?clientGuid=cf4cca29-e144-4e6a-8485-792f809d84cc
                                 &contractId=6
                                 &endSession=False
                                 &GroupIds='0,1,2,3,4,5,6,7'
                                 &FamilyIds=
                                 &PartNumbers=

和我有以下方法在我的web服务机器:

[WebGet]
public void Add(string clientGuid,
                int contractId,
                bool endSession,
                string GroupIds,
                string FamilyIds,
                string PartNumbers)
{
   ...
}

但是访问url给了我以下例外:"400错误请求-查询语法错误"

WCF数据服务-“错误请求”-查询语法错误

GUID:

https://localhost/service.svc/Add?clientGuid=guid'cf4cca29-e144-4e6a-8485-792f809d84cc'
                                  &contractId=6
                                  &endSession=False
                                  &GroupIds='0,1,2,3,4,5,6,7'
                                  &FamilyIds=
                                  &PartNumbers=