Php发出肥皂请求



我试图向Amadeus Web Service发出肥皂请求。我有带有肥皂头的 xml 文件

<?xml version="1.0"?>
<soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <add:MessageID xmlns:add="http://www.w3.org/2005/08/addressing">dbbb6ca5-e5d4-7518-d84-f6f7c22ed752</add:MessageID>
  <add:Action xmlns:add="http://www.w3.org/2005/08/addressing">http://webservices.amadeus.com/Hotel_MultiSingleAvailability_10.0</add:Action>
  <add:To xmlns:add="http://www.w3.org/2005/08/addressing">https://nodeD1.test.webservices.amadeus.com/1ASIWOTANA8</add:To>
  <link:TransactionFlowLink xmlns:link="http://wsdl.amadeus.com/2010/06/ws/Link_v1"/>
  <oas:Security xmlns:oas="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <oas:UsernameToken xmlns:oas1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" oas1:Id="UsernameToken-1">
      <oas:Username>WSNA8OTA</oas:Username>
      <oas:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"nonce</oas:Nonce>
      <oas:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">pass</oas:Password>
      <oas1:Created>2017-11-09T08:50:40.588Z</oas1:Created>
    </oas:UsernameToken>
  </oas:Security>
  <AMA_SecurityHostedUser xmlns="http://xml.amadeus.com/2010/06/Security_v1">
    <UserID POS_Type="1" PseudoCityCode="MIA1S38BL" AgentDutyCode="SU" RequestorType="U"/>
  </AMA_SecurityHostedUser>
</soap:Header>

我的 php 代码

$params = [
            'exceptions' => 0,
            'soap_version' => SOAP_1_2,
            'trace' => 1,
        ];
        $soapvar = new SoapVar($soapRequest, XSD_ANYXML);
        $client = new SoapClient($wsdlFile", $params);
        $result = $client->Hotel_MultiSingleAvailability($soapvar);

但是如果我打印最后一个请求,我会得到另一个 xml

<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://www.opentravel.org/OTA/2003/05">
  <env:Body>
    <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      <add:MessageID xmlns:add="http://www.w3.org/2005/08/addressing">be4b7f20-c867-11e7-a815-83f383e012a5</add:MessageID>
      <add:Action xmlns:add="http://www.w3.org/2005/08/addressing">http://webservices.amadeus.com/Hotel_MultiSingleAvailability_10.0</add:Action>
      <add:To xmlns:add="http://www.w3.org/2005/08/addressing">https://nodeD1.test.webservices.amadeus.com/1ASIWOTANA8</add:To>
      <link:TransactionFlowLink xmlns:link="http://wsdl.amadeus.com/2010/06/ws/Link_v1"/>
      <oas:Security xmlns:oas="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
        <oas:UsernameToken xmlns:oas1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" oas1:Id="UsernameToken-1">
          <oas:Username>WSNA8OTA</oas:Username>
          <oas:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">nonce</oas:Nonce>
          <oas:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">pass</oas:Password>
          <oas1:Created>2017-11-13T11:42:35:788Z</oas1:Created>
        </oas:UsernameToken>
      </oas:Security>
      <AMA_SecurityHostedUser xmlns="http://xml.amadeus.com/2010/06/Security_v1">
        <UserID POS_Type="1" PseudoCityCode="MIA1S38BL" AgentDutyCode="SU" RequestorType="U"/>
      </AMA_SecurityHostedUser>
    </soap:Header>
  </env:Body>
</env:Envelope>

如何从我的请求中删除 env:body 和 env:envelope 并仅使用我的 xml 文件?

要获得soap:Header它的子元素

// load full xml
$xml = simplexml_load_string($s);
// get all namespaces used  in doc by seting true and register soap for xpath
$xml->registerXPathNamespace ('soap', $xml->getDocNamespaces(true)['soap']);
// get the part you want
$myxml = $xml->xpath('/env:Envelope/env:Body/soap:Header');

演示

有一个PHP库可以为你做到这一点,等等。这是一个库,可以轻松访问 PHP 中的 Amadeus SOAP 接口,请查看:https://github.com/amabnl/amadeus-ws-client。

该库尚不支持 Hotel 消息,但它可以为您节省实现整个 SOAP 标头业务的大量时间。也许您愿意为支持Hotel_信息做出贡献?为此,请参阅 https://github.com/amabnl/amadeus-ws-client/issues/70

相关内容

  • 没有找到相关文章