在这里,我使用以下方法创建一个简单的wcf-Rest Service for Update
[OperationContract]
[WebInvoke(UriTemplate = "/UpdatexyzData",Method ="POST",RequestFormat = WebMessageFormat.Json,ResponseFormat =WebMessageFormat.Json)]
void Updatexyz(xyz Update);
当我尝试从浏览器点击该服务时,我输入Url,就像这样
http://localhost:9706/EmployeeService.svc/UpdatexyzData
浏览器通过错误作为Methode不允许请帮助我如何格式化URL
答案 0 :(得分:0)
您创建了POST
方法。你无法用浏览器访问它。
更改Method ="GET"
或以其他方式调用它。你可以使用Fiddler4
。