douhan1860 2013-10-09 11:19
浏览 70
已采纳

PHP SOAP Errormessage - System.NullReferenceException:未将对象引用设置为对象的实例

I have this problem, currently I am learning soap and developing online booking system with wsdl of http://vanillatours.com in PHP

their required headers are soapaction, and charset. which I have included, soapaction changes for desired request. for example, currently trying to do checklogin() function.

I tried print_r($client->__getFunctions()) to see if functions are attached, they are!

I tried print_r($client) to see if headers are attached and they are

the problem is that I can not figure out why I get this errormessage.

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

Tried everything! I am very new with soap and any help would be appreciated. maybe I am not using correctly data "request"?

thank you!

<?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>';
?>

this is how to connect from their documentation, if I can use other method, would appreciate too.

CheckLogin function checks the user credentials is valid or not. SOAPAction value is http://tempuri.org/IWcf/CheckLogin

3.1.2 Request

 <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>
  • 写回答

1条回答 默认 最新

  • doulai8405 2013-10-09 11:45
    关注

    The structure of $data is not right. It should be:

    $data = array(
        "loginHeader" => array(
             "AgentId" => blabla,
             "Language" => "En",
             "Password" => "blabla",
             "Username" => "blabla"
        )
    );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵