Fiddler Web调试器

时间:2015-07-29 15:14:05

标签: c# asp.net wcf fiddler

我正在尝试使用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有一些问题?

这是我正在测试的http://localhost:50327/Service1.svc/testpost

的URI

enter image description here

0 个答案:

没有答案