0

当我使用时,我的服务运行良好:

[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "json/?id={id}")] 
string jdata(string id);

我的方法实现是

public string json(string id)
{
    return "Your typed String is : " id;
}

到这里它运行良好,但我一定会Method=POST在 WebInvoke 中使用,

[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "json/?id={id}")]
string jdata(string id);

当我使用它并调用服务时,我必须面对不允许的方法。 请解决我的这个小问题......

4

0 回答 0