我使用此代码发出肥皂请求:
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();
我拥有所有功能,包括上面使用的'方法'。
可能是什么问题?