我想使用Operation Contract创建WCF Rest服务,就像这样
public interface ICustomerService
{
[OperationContract]
[WebInvoke(Method = "GET", RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json, UriTemplate = "/GetAllCustomer/")]
List<CustomerDataContract> GetAllCustomer();
[OperationContract]
[WebInvoke(Method = "GET", RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json, UriTemplate = "/GetSTOCK/ABC")]
List<CustomerDataContract> GetSTOCK();
[OperationContract]
[WebInvoke(Method = "GET", RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json, UriTemplate = "/GETSUPINFO/XYZ/ABC")]
List<CustomerDataContract> GETSUPINFO();
}
可以帮助吗?
答案 0 :(得分:0)
有两种方法可以使用Restful服务协议来支持您的逻辑。第一个是更改您的WCF服务,您可以参考以下链接了解更多详细信息。 https://msdn.microsoft.com/en-us/library/dd203052.aspx
https://msdn.microsoft.com/en-us/library/bb412178(v=vs.90).aspx
更简单的方法是使用WepAPI包装您的逻辑,并按原样保留您的WCF服务。您还可以从以下关于WebAPI的链接获取更多信息。
https://msdn.microsoft.com/en-us/library/hh833994(v=vs.108).aspx