使用PHP SOAPCLIENT的肥皂请求



我需要发送以下SOAP请求

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:dat="http://touricoholidays.com/WSDestinations/2008/08/DataContracts">
<soapenv:Header>
  <dat:LoginHeader>
     <dat:username>myUserName</dat:username>
     <dat:password>myPassword</dat:password>
     <dat:culture>en_US</dat:culture>
     <dat:version>8</dat:version>
  </dat:LoginHeader>
</soapenv:Header>
<soapenv:Body>
  <dat:GetDestination>
     <dat:Destination>
        <dat:Continent>Europe</dat:Continent>
        <dat:Country>Spain</dat:Country>
        <dat:State></dat:State>
        <dat:City>Madrid</dat:City>
        <dat:Providers>
           <dat:ProviderType>Default</dat:ProviderType>
        </dat:Providers>
     </dat:Destination>
  </dat:GetDestination>
 </soapenv:Body>
</soapenv:Envelope>

我正在尝试使用PHP内置的Soapclient类来实现这一目标。当我运行以下代码时,它说"登录失败,请检查用户名和密码。"但是,我非常确定用户名和密码都是正确的,因为在其他应用程序中使用了相同的值。

我认为问题在下面的代码中。你能告诉我什么是错误?

try{
    $client     = new SoapClient($soap_url, array("trace" => 1));
    $ns = 'http://touricoholidays.com/WSDestinations/2008/08/DataContracts';
    $auth = array(
                'username' => 'myUserName',
                'password' => 'myPassword',
                'culture' => 'en_US',
                'version' => '8',
    );
    $header = new SoapHeader($ns, 'LoginHeader', $auth);
    $client->__setSoapHeaders($header);
    $res = $client->__soapCall("GetDestination", array());
    var_dump($res);
}
catch(Exception $e)
 {
      echo $e->getMessage();
 }

您应该确定使用仍使用本机Soapclient类(例如Packagengenerator Project(的WSDL到PHP生成器。它只是根据WSDL生成PHP SDK。然后,您只需要使用生成的类来构建和发送您的请求。然后,响应是使用生成类的对象。

最新更新