PHP soap xml request


PHP soap xml request

我试着在网上四处寻找,搜索了很多,但我不知道如何做到这一点。

我想制作一个带有标头和XML代码的SOAP请求。

这就是我所取得的成就:创建了一个保存标题信息的变量:

$headers = array(
        "POST /somefile.asmx HTTP/1.1",
        "Host: a ip adress",
        "Content-Type: application/soap+xml; charset=utf-8",
        "Content-Length: ".strlen($xml_post_string)
    );

我想发送的xml看起来像这样:

<?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>
    <GetViVaDataT xmlns="http://www.somesite.se/somefile.wsdl">
      <PlatsId>int</PlatsId>
    </GetViVaDataT>
  </soap:Body>
</soap:Envelope>

但我不知道如何走得更远。我在用肥皂1.2。

如果其他人也有和我一样的问题,下面是我所做的工作。

$soapAction = 'http://www.somesite.com/path/to/file/file.wsdl/function';

    $xml = '<?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>
      <GetViVaDataT xmlns="http://www.somesite.se/somefile.wsdl">
        <PlatsId>int</PlatsId>
      </GetViVaDataT>
    </soap:Body>
   </soap:Envelope>';
    $headers = array(
        "POST /site.asmx HTTP/1.1",
        "Host: a ip adress",
        "Content-Type: application/soap+xml; charset=utf-8",
        "Content-Length: ".strlen($xml),
        'SOAPAction:' .$soapAction
    );
    $curlData = $xml;
    $url='http://site/file.asmx';
    $curl = curl_init();
    curl_setopt ($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl,CURLOPT_TIMEOUT,120);
    curl_setopt($curl,CURLOPT_ENCODING,'xml');
    curl_setopt($curl,CURLOPT_HTTPHEADER,$headers);
    curl_setopt ($curl, CURLOPT_POST, 1);
    curl_setopt ($curl, CURLOPT_POSTFIELDS, $curlData);
    $result = curl_exec($curl);