我目前正在构建一个需要我发出 SOAP 请求的系统。我以前使用过 SOAP,但那是很久以前的事了,现在我很难回忆!
这是我收到的示例请求:
POST /FITSPACE/MHservice.asmx HTTP/1.1
Host: fitspace.m-cloudapps.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://m-hance.com/FITratelist"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<FITratelist xmlns="http://m-hance.com/" />
</soap:Body>
</soap:Envelope>
这个 SOAP 示例应该允许我操作返回的费率列表。任何人都可以阐明我应该为请求发布到哪个 URL,因为这是我遇到的第一个障碍。每当我构建我认为应该使用的 URL 时,它都不会返回任何结果。
提前致谢!