是否可以使用Fiddler的Request Builder制作JSON请求?

时间:2010-04-07 00:04:07

标签: asp.net web-services json

我一直收到请求格式无效。

这是发送的原始http:

POST http://x.x.x.x/ws/MyWebService.asmx/TestEvent HTTP/1.1
contentType: "application/json; charset=utf-8",
  dataType: "json",
  data: {"strData":"1"}
Host: x.x.x.x
Content-Length: 4

非常感谢任何帮助。

谢谢!

1 个答案:

答案 0 :(得分:125)

我认为应该更像这样:

POST /ws/MyWebService.asmx/TestEvent HTTP/1.1
Host: x.x.x.x
Content-Type: application/json; charset=utf-8
Content-Length: 15

{"strData":"1"}

在连接中指定要连接的服务器。