php soapClient - 不生成任何XML,__ getFunctions()为空 - 没有错误

时间:2014-08-26 11:05:35

标签: php soap soap-client

我正在运行php-5.3.3-27.el6_5.1.x86_64 同 PHP-皂5.3.3-27.el6_5.1.x86_64 PHP的XML-5.3.3-27.el6_5.1.x86_64 libxml2-2.7.6-14.el6_5.2.x86_64

我试图访问affilinet网络服务(我也尝试过其他网络服务,结果相同)

$ soap_client-> __ getFunctions()不返回任何内容 发送的SOAP请求只有3个值Username,Password,WebServiceType连接 - 没有围绕它的XML结构。

$soap_client = new SoapClient($this->wsdl, array('trace'=>true, 'encoding'=>'UTF-8'));

var_dump($soap_client->__getFunctions());

$params->Username = $this->id;
$params->Password = $this->password;
$params->WebServiceType = "Product";

try {
$result = $soap_client->Logon($params);
                              //new SoapParam($this->id,"Username"),
                              //new SoapParam($this->password,"Password"),
                              //new SoapParam("Product","WebServiceType"));
} catch(Exception $ex) {

}

1 个答案:

答案 0 :(得分:0)

好的,在写下这个问题的时候,我想出来了:

安装libxml2的32位软件包(libxml2-2.7.6-14.el6_5.2.i686)解决了这个问题。