Php SoapClient:SoapFault异常:无法连接到主机

时间:2015-07-28 14:39:23

标签: php soap wsdl soap-client

我使用此代码发出肥皂请求:

try {
    $S = new \SoapClient($this->wsdl);
    $method = 'method';
    $params = array('ID' => $Id, 'Code'=> $Code);
    return  $S->__call($method, $params);
}catch (\Exception $e) {
    return  $e->getMessage();
}

但是提出了一个例外:

  

SoapFault异常:[HTTP]无法连接到主机

我尝试返回Web服务的WSDL中描述的所有函数

$S = new \SoapClient($this->wsdl);
return $S->__getFunctions();

我拥有所有功能,包括上面使用的'方法'。

可能是什么问题?

0 个答案:

没有答案