我正在连接到需要SSL文件的WSDL。我创建了这个PHP脚本来连接到SOAP API:
$url = "https://www.testsoap.nl/api/soap?wsdl";
$soapArr = array(
"soap_version"=>SOAP_1_1,
"trace"=>true,
"exceptions"=>true,
"local_cert"=>"certfile.p12",
"passphrase"=>"passwordhere"
);
$client = new SoapClient($url, $soapArr);
现在当我尝试连接时,我会在错误日志中看到此错误:
[Fri Jan 10 11:08:21 2014] [error] [client 172.21.1.131] PHP Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://www.testsoap.nl/api/soap?wsdl' : failed to load external entity "https://www.testsoap.nl/api/soap?wsdl"\n in /var/www/index.php:39\nStack trace:\n#0 /var/www/index.php(39): SoapClient->SoapClient('https://www.tes...', Array)\n#1 {main}\n thrown in /var/www/index.php on line 39
第39行= $ client = new SoapClient($ url,$ soapArr);
我也尝试过这些数组选项,但它们没有改变任何东西:
$soapArr = array(
"style"=>SOAP_DOCUMENT,
"use"=>SOAP_LITERAL,
"soap_version"=>SOAP_1_1,
"trace"=>true,
"authentication"=>SOAP_AUTHENTICATION_DIGEST,
"exceptions"=>true,
"local_cert"=>"certfile.p12",
"passphrase"=>"passwordhere",
"ssl_method"=>SOAP_SSL_METHOD_TLS
);
需要考虑的一些事项:
我可以在浏览器中安装此SSL证书文件并连接到API而不会有任何问题。
当使用soapUI(带有密码和证书)时,我也可以连接到API
我的debian服务器上安装了openssl
debianserver可以连接到互联网
php-soap安装在debian服务器上
我做了一些测试,发现当我不使用这样的证书时,我会得到同样的错误:
$client = new SoapClient($url);
所以我必须假设证书没有像我期望的那样加载。
我发现了这个错误:https://bugs.php.net/bug.php?id=27777 在这里:http://www.php.net/manual/en/soapclient.soapclient.php#83474有人说这也是SSL证书的一部分。
然而,阅读这些信息和可能的解决方案,我仍然没有进一步......
非常感谢任何帮助。 提前谢谢!
答案 0 :(得分:3)
尝试使用
将证书从.p12
转换为.pem
openssl pkcs12 -in certfile.p12 -out certfile.pem -nodes -clcerts