我正在尝试使用Fiddler工具测试WCF服务POST方法,我使用相同的工具测试了GET并且工作正常。
这是POST方法的WCF实现:
[OperationContract]
[WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.WrappedResponse, ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json, UriTemplate = "testpost/{test}")]
string PostTest(string test);
这是Fiddler工具截图我是如何测试的,但是得到HTTP 404错误:
>是否可能Opearation Contract WebInvoke有一些问题?
的URI