如何将基于SOAP的WCF服务转换为RESTfull API

时间:2015-06-09 15:33:45

标签: c# web-services wcf soap

现在我正在使用基于SOAP的WCF服务,如何将其转换为RESTfull API。

我的WCF服务将如下所示。

[ServiceContract]
public interface ICategoryService
{
    [OperationContract]      
    bool UpdateCategory(CategoryEntity category);     
}


[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class CategoryService: ICategoryService
{
}

0 个答案:

没有答案