我有一组 WCF 服务,它们允许使用 JSON 格式进行消息交换。
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json,
UriTemplate = "SearchStores/{accountId}/{storeName}")]
public IList<Store> SearchStores(string accountId, string storeName)
如何将空/null storeName 传递给该方法?
如果我使用以下 url 调用该方法,我会得到 404 not found 错误。
servername:port/myservice/SearchStores/1/