我需要在C#中創建一個RESTful web服務。這就是我現在所擁有的:如何託管一個RESTful C#web服務並對其進行測試
namespace WebService
{
[ServiceContract]
public interface IService
{
[OperationContract(Name="Add")]
[WebGet(UriTemplate = "/")]
int Add();
}
public class Service:IService
{
public int Add()
{
// do some calculations and return result
return res;
}
}
}
現在,我的問題是我如何在外景主持人這項服務說(http://localhost/TestService)以及如何測試控制檯應用程序客戶端的服務?