我必须通过HTTP POST调用Web服务。 我该怎么办?
我的网络服务对此进行了解释:
HTTP POST
The following is a sample HTTP POST request and response. The placeholders
shown need to be replaced with actual values.
POST /Green/GreenWSMain.asmx/Autentica HTTP/1.1
Host: 5.189.159.195
Content-Type: application/x-www-form-urlencoded
Content-Length: length
UID=string&PWD=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<boolean xmlns="http://GreenWebService.org/">boolean</boolean>
使用链接中介绍的方法,我无法使所有工作正常。 我在网络配置中输入了字符串:
<webServices>
<protocols>
<add name="HttpGet" />
<add name="HttpPost"/>
</protocols>
</webServices>
,但是服务器似乎不接受该请求。 使用“获取所有作品” finne。 提前致谢, 西蒙妮(Simone)