欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP https访问webservice_PHP教程

程序员文章站 2024-04-05 18:45:36
...
测试环境中PHP以http访问webservice,一切正常。

但生产环境的webservice是https,程序显示SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://***/Service?wsdl' : failed to load external entity "https://***/Service?wsdl", 但直接在网页中打开https://***/Service?wsdl,返回正常。

配置环境:

php server:WAMP

webservice:LAMP


查了一天的资料,原来要这样:

在windows下就是需要php_curl.dll和php_openssl.dll, curl同时依赖于libeay32.dll, ssleay32.dll, openssl依赖于libeay32.dll

也就是PHP server要加载上述这些模块。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477977.htmlTechArticle测试环境中PHP以http访问webservice,一切正常。 但生产环境的webservice是https,程序显示SOAP-ERROR: Parsing WSDL: Couldnt load from https://***/Service?wsdl...