我正在尝试调用 WCF 休息服务,如下所示:
[WebInvoke(UriTemplate = "Login", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
public string Process(string AuthenticationInfo)
{
我正在尝试在 Fiddler 2 中使用以下内容调用它:
User-Agent: Fiddler
Host: localhost
content-type: application/json;charset=utf-8
content-length: 0
data: {"AuthenticationInfo": "data"}
我在方法中有一个断点,它确实到达了断点,但 AuthenticationInfo 的值始终为空,而不是“数据”。
我究竟做错了什么?
谢谢。