我创建了一个 WCF restful 服务,它以基本上是一个字符串的 xml 格式返回组信息。要获取此信息,我需要传递两个参数,例如 PersonId 和 GroupId - 都是字符串。在这里,一个人可以拥有多个组。逻辑是,如果我同时传递 - PersonId 和 GroupId,那么它将仅返回该组的特定信息,但如果我不传递 GroupId,则该方法将返回该人的所有组。到目前为止,我通过 get 方法使用此服务,例如
localhost/service/service.svc/getGroupInfo?PersonId=A100&GroupId=E100
or
localhost/service/service.svc/getGroupInfo?PersonId=A100&GroupId=
界面如下:
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare)]
string getGroupInfo(string PersonId, string GroupId);
它给了我预期的准确结果。然后我尝试使其成为 RESTFull 并UriTemplate
在webInvoke
. 例如
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare,UriTemplate = "getGroupInfo/{PersonId}/{GroupId}")]
string getGroupInfo(string PersonId, string GroupId);
让我的服务像 RESTfull
localhost/service/service.svc/getGroupInfo/A100/E100
它工作正常。但现在我的问题已经开始了。如果我没有设置 GroupId,它会给出服务未找到或错误请求错误。我想选择设置 groupId 。例如
对于单组
localhost/service/service.svc/getGroupInfo/A100/E100
对于所有组
localhost/service/service.svc/getGroupInfo/A100
可能吗?
等待您的宝贵回复..
谢谢..