0

我有这个问题,目前我正在学习soap并使用PHP中http://vanillatours.com的wsdl开发在线预订系统

它们所需的标题是soapaction, 和charset. 我已经包括在内,soapaction 更改为所需的请求。例如,目前正在尝试做checklogin()功能。

我试图print_r($client->__getFunctions())查看是否附加了功能,它们是!

我试图print_r($client)查看是否附加了标题并且它们是

问题是我无法弄清楚为什么会收到此错误消息。

System.NullReferenceException: Object reference not set to an instance of an object.
at WcfService.Wcf.CheckLogin(LoginHeaderWcfRequest loginHeader)

什么都试过了!我对肥皂很陌生,任何帮助将不胜感激。也许我没有正确使用数据“请求”?

谢谢你!

<?php 

    $wsdl = "http://xmltest.vanillatours.com/Wcf.svc?wsdl";
    $client = new SoapClient($wsdl);

    $data = array(
     "request" => array(
      "a:AgentId" => blabla,
      "a:Language" => "En",
      "a:Password" => "blabla",
      "a:Username" => "blabla"
     )
    );

    $header = array();

    $header[] = new SoapHeader('http://tempuri.org/IWcf/CheckLogin','SOAPAction');
    $header[] = new SoapHeader('text/xml; charset=utf-8','ContentType');

    $client->__setSoapHeaders($header);


    $response = $client->__soapCall('CheckLogin', $data);

    echo '<pre>';


    print_r($client->__getFunctions()); // functions seem to show pretty well

    echo '<br>------------------------------------------------------<br><br>';

    print_r($client); // headers are attached 

    echo '<br>------------------------------------------------------<br><br>';

    print_r($response); // errormessage, can not figure out what is the problem.

    echo '</pre>';
?>

这是从他们的文档中连接的方法,如果我可以使用其他方法,我也将不胜感激。

CheckLogin 函数检查用户凭据是否有效。SOAPAction 值为http://tempuri.org/IWcf/CheckLogin

3.1.2 请求

 <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> 
 <s:Body> 

<CheckLogin xmlns="http://tempuri.org/"> 
<loginHeader xmlns:a="http://schemas.datacontract.org/2004/07/WcfService" 
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> 
 <a:AgentId>Your Agent Id</a:AgentId> 
 <a:Language>Your preferred language</a:Language> 
 <a:Password>Your Password</a:Password> 
 <a:Username>Your username</a:Username> 
 </loginHeader> 
 </CheckLogin> 
 </s:Body> 
 </s:Envelope>
4

1 回答 1

1

的结构$data不对。它应该是:

$data = array(
    "loginHeader" => array(
         "AgentId" => blabla,
         "Language" => "En",
         "Password" => "blabla",
         "Username" => "blabla"
    )
);
于 2013-10-09T11:45:28.267 回答