使用PHP的SOAP请求

时间:2013-05-07 16:06:12

标签: php soap

我目前正在构建一个要求我发出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时,我应该使用它,它不会带来任何结果。

提前致谢!

1 个答案:

答案 0 :(得分:1)

您应该要求wsdl网址发布此请求。

编辑: 我试过下面的代码。从这里看起来工作得很好,给我一些方法。

$url = 'https://XXXXXXXX.m-XXXXXX.com:XXX/FITSPACE/MHservice.asmx?WSDL';
$options["connection_timeout"] = 25;
$options["location"] = $url;
$options['trace'] = 1;

$client = new SoapClient($url,$options);
print_r($client->__getFunctions());