iis Express中不允许使用post方法

时间:2015-02-21 06:52:07

标签: .net wcf

我正在尝试使用WCF开发Web服务。

我想在本例中使用post方法,因为我已经实现了Get方法。代码是:

[OperationContract]
[WebInvoke(Method = "POST",
           RequestFormat= WebMessageFormat.Json,
           ResponseFormat = WebMessageFormat.Json,
           UriTemplate = "Json/{id}")]
public void JsonData(string id)
{
     return "id is :" + id;
}

当我在get的地方使用post方法但是它在get方法中工作时,这显示了不允许的方法。

请帮帮我。

1 个答案:

答案 0 :(得分:2)

如果您有Fiddler,则需要转到Composer标签,选择POST的方法,输入您的网址,然后点击Execute

enter image description here