如何在Advance Rest Client或POSTMAN中检查wcf服务

时间:2016-04-17 02:39:17

标签: c# wcf rest

您好我已经创建了一个WCF服务,并希望在“Advance Rest Client”中检查此服务,但它向我显示以下responce.can任何人建议我们如何检查我们的服务。 enter image description here

这是我编写代码的界面。

 public interface IService1
    {

        [OperationContract]
        bool InsertData(Employee1 obj);
        [OperationContract]
        [WebGet(RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = "/ShowAll/")]
        List<Employee1> ShowAll();  

    }

0 个答案:

没有答案