php7使用SSL协议访问webservice出现问题
不是我
不是我 2022-03-20 16:31:22
0
1
933

错误为:SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://xxxxx/api?wsdl' : failed to load external entity "https://xxxxxxx/api?wsdl" in D:\www\compare.php:22 Stack trace: #0 D:\www\compare.php(22): SoapClient->SoapClient('https://xxx...', Array) #1 {main}

代码如下:

$opts =array('http' => array('user_agent' => 'PHPSoapClient'),'ssl'=>array('verify_peer'=>false ,'verify_host'=>false,"verify_peer_name"=>false));

$url="https://xxxxxxx/api?wsdl";

$params= array('encoding' => 'UTF-8','soap_version'=>SOAP_1_1,'trace' => 1, "exceptions" => 1, "connection_timeout" => 180,'username' => 'xx', 'password' => '*****','stream_context' => stream_context_create($opts));

$client =new SoapClient($url,$params);

另外php.ini配置没有问题,openssl和soap已经打开

请问下各位大佬,怎么解决????

不是我
不是我

全部回复(1)
不是我

系统环境为windows2012+apche2.4+PHP7.2

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!