解决php soap-error问题的方法:首先通过“openssl_get_cert_locations”获取默认证书路径;然后下载证书;最后保存到目录即可解决php soap-error问题。
怎么解决php soap-error问题?
解决 php soap-error: parsing wsdl: couldn't load from 问题
php fatal error: uncaught soapfault exception: [wsdl] soap-error: parsing wsdl: couldn't load from 'https://xxxx.com'.
这个错误是我从php5.6升级到php7.2的时候遇到的问题,从google搜索后发现很多人出现这个问题,一直没有找到好的结果,知道一个文章里面找到下面的代码
$opts = array( 'http' => array( 'user_agent' => 'phpsoapclient' ), 'ssl' => array( 'verify_peer' => false ), ); $context = stream_context_create($opts);$requesturl = 'https://labelserver.endicia.com/labelservice/ewslabelservice.asmx?wsdl'; $client = new soapclient($requesturl, array("trace" => 1, "cache_wsdl" => wsdl_cache_none, "exception" => 1, 'stream_context' => $context));
问题的主要是 ssl认证失败
通过openssl_get_cert_locations 获取默认证书路径。
openssl_get_cert_locations()rray(8) { ["default_cert_file"]=> string(21) "/usr/lib/ssl/cert.pem" ["default_cert_file_env"]=> string(13) "ssl_cert_file" ["default_cert_dir"]=> string(18) "/usr/lib/ssl/certs" ["default_cert_dir_env"]=> string(12) "ssl_cert_dir" ["default_private_dir"]=> string(20) "/usr/lib/ssl/private" ["default_default_cert_area"]=> string(12) "/usr/lib/ssl" ["ini_cafile"]=> string(0) "" ["ini_capath"]=> string(0) ""
下载证书,并保存到目录,后问题得到解决
更多相关知识,请访问!