douzhuang2016 2014-07-16 11:46
浏览 59
已采纳

使用SoapClient PHP无法连接

I am trying to connect and use a WebService with PHP and SoapClient, but getting the following error

Fatal error: Uncaught SoapFault exception: [SOAP-ENV:Client] Error cannot find parameter in /www/1/html/webservices/tuev-nord-ass/soapclientconnect.php:21 

I have SOAP already installed. But still dont know why i am getting this error. I am new to web services and might be doing mistake somewhere.

WSDL link:

http://www.schwackenet.de/awonline/de/service2/SNWebService.php?wsdl

My code:

<?php
ini_set("soap.wsdl_cache_enabled", "0");
ini_set('soap.wsdl_cache_ttl', '0');

$wsdl = 'http://www.schwackenet.de/awonline/de/service2/SNWebService.php?wsdl';

$options = array('trace' => true);
$client = new SoapClient($wsdl, 
array( 
'Benutzer' =>           'desenbeck',
'Kennwort' =>           'desenbeck',
'KonzernID' =>          '100',
'Händler-Nr' =>         'INT31303',
'DMS-ID' =>             'A13T2D19',
'encoding'=>            'ISO-8859-1'
)
);
//Returns list of available SOAP functions described in the WSDL for the Web service. 
var_dump($client->__getFunctions());
//some parameters to send
$result = $client->Login('Benutzer', 'Kennwort', 'KonzernID', 'Händler-Nr', 'DMS-ID');
var_dump($result);
?>
  • 写回答

1条回答 默认 最新

  • douyuben9434 2014-07-17 06:12
    关注

    Use a string indexed array for parameter:

    $param = array ('user' => 'test',
        'password' => 'test',
        'corporate_group_id' => 'test',
        'dealer_number' => 'test',
        'dms_id' => 'test',
        'dms_image_url' => 'test',
        'dms_keepalive_url' => 'test',
        'dms_followup_url' => 'test');
    
    //some parameters to send
    $result = $client->Login($param);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 (标签-UDP|关键词-client)
  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 qgcomp混合物线性模型分析的代码出现错误:Model aliasing occurred
  • ¥100 已有python代码,要求做成可执行程序,程序设计内容不多
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥15 小红薯封设备能解决的来
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助
  • ¥15 STM32控制MAX7219问题求解答