我在我的界面中使用以下代碼並使用webapi服務。405 error {「Message」:「請求的資源不支持http方法'GET'。」}
[OperationContract]
[WebInvoke(Method = "GET")]
bool IsPaymentGatewayExitsForTenant(string tenantSlugName, string productCode);
我在本地運行,並使用REST客戶端
api/PaymentGatewayService/IsPaymentGatewayExitsForTenant?tenantSlugName=KPN&productCode=POSS
測試服務,但我得到以下errror enter code here
{"Message":"The requested resource does not support http method 'GET'."} `enter code here`
任何幫助將appeciated。
什麼是基類的控制器?請再展示一些代碼。 – Markus
@markus ApiController – madhu