我一直收到请求格式无效。
这是发送的原始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
非常感谢任何帮助。
谢谢!
答案 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"}
在连接中指定要连接的服务器。