1

我必须在 PHP 中为托管在 Windows / IIS 上的 Web 服务创建一个 SoapClient。当我从本地 IIS + PHP 运行脚本时,它可以工作。当我从 Apache 网络服务器的本地 XAMP 运行相同的脚本时,我总是得到相同的错误:

致命错误:未捕获的 SoapFault 异常:[WSDL] SOAP-ERROR:解析 WSDL:无法从“https://online.wings.eu:8080/wsdl/IWingsWeb”加载

<?php
$url = 'https://online.wings.eu:8080/wsdl/IWingsWeb';

$options["connection_timeout"] = 25;
$options["location"] = $url;
$options['trace'] = 1;

$client = new SoapClient($url,$options);
print_r($client->__getFunctions());
?>

在 Apache 上启用了 SOAP 和 openssl。我还可以访问托管在非 Windows 服务器上的其他服务。

这是我的 Apache 的问题还是托管 SOAP 服务器的 Windows 服务器的问题?

4

1 回答 1

0

Apache 和 IIS 服务器之间的连接可能无法建立。您应该检查以下内容:

  • 是否有任何防火墙、反恶意软件程序等可能会阻止 Apache 服务器的 8080(传出,而不是传入)端口?
  • 是否有连接到服务器所需的任何 SSL 证书或密码(或两者)。如果是,您应该告诉 PHP 设置适当的标头。
  • 您可能希望将默认 SoapClient 替换为直接使用 curl 的内容。在那里你可以设置一些 curl 参数,并检查是否关于实际错误。

像这样:

class SoapCurlWrapper extends SoapClient {
  protected function callCurl($url, $data, $action) {
     $handle   = curl_init();
     curl_setopt($handle, CURLOPT_URL, $url);
     curl_setopt($handle, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml", 'SOAPAction: "' . $action . '"'));
     curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
     curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
     curl_setopt($handle, CURLOPT_SSLVERSION, 3);
     $response = curl_exec($handle);
     if (empty($response)) {
       throw new SoapFault('CURL error: '.curl_error($handle),curl_errno($handle));
     }
     curl_close($handle);
     return $response;
   }

   public function __doRequest($request,$location,$action,$version,$one_way = 0) {
       return $this->callCurl($location, $request, $action);
   }
 }

请注意,PHP 的 SOAP 实现不会使用上面的包装器来下载 WSDL 文件(您必须手动完成),但您可以将它用于实际的 WS 调用,并且实际上可能会找出它失败的原因。

您可以像 any 一样使用上述类SoapClient,例如:

$oWS = new SoapCurlWrapper($location_of_wsdl_file,$parameters);
于 2013-01-17T09:29:19.007 回答