php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #72274 SOAP error when MS SQLSRV drivers are included in php.ini
Submitted: 2016-05-27 14:20 UTC Modified: 2021-04-04 04:22 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 1 (0.0%)
From: mark dot cassie at campdenbri dot co dot uk Assigned: cmb (profile)
Status: No Feedback Package: SOAP related
PHP Version: 5.6.22 OS: Windows 10
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mark dot cassie at campdenbri dot co dot uk
New email:
PHP Version: OS:

 

 [2016-05-27 14:20 UTC] mark dot cassie at campdenbri dot co dot uk
Description:
------------
We have just started upgrading from Windows 7 to Windows 10 and I found this problem while testing the upgrade.

When I include

extension=php_pdo_sqlsrv_55_nts.dll 

in the php.ini file everything seems to work ok until the page hits the new SoapClient code below at which point it throws an error; 

PHP Fatal Error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https...' : failed to load external entity "https..." 

This code worked fine under Windows 7 and under Windows Server 2008 r2 SP1 but these errors started after the Windows 10 upgrade, removing the sqlsrv extension fixed the problem.

I am using the latest (3.2) version of the MS SQL server drivers



Test script:
---------------
$client = "https://example.com/WebServices/webservice.svc?wsdl";     

$this->soapClient = new SoapClient($client,
                array('features' => SOAP_SINGLE_ELEMENT_ARRAYS,
                    'trace' => false,
                    'exceptions' => true));


Expected result:
----------------
I don't expect to see the error mentioned above, in Windows 7 and Windows Server 2008 r2 the code works ok.

Actual result:
--------------
PHP Fatal Error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https...' : failed to load external entity "https..." 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-05-27 14:23 UTC] mark dot cassie at campdenbri dot co dot uk
extension=php_pdo_sqlsrv_55_nts.dll should read 
extension=php_pdo_sqlsrv_56_nts.dll
 [2016-10-20 08:06 UTC] mark dot cassie at campdenbri dot co dot uk
This problem also applies to PHP 7.0.12 on Windows 10
 [2018-05-09 10:43 UTC] mark dot cassie at campdenbri dot co dot uk
The problem still exists in PHP 7.1.17 and with sql_srv 5.2

But can be solved by specifying a cacert.pem file location in the openssl.cafile parameter in php.ini
 [2021-03-23 16:31 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2021-03-23 16:31 UTC] cmb@php.net
> But can be solved by specifying a cacert.pem file location in
> the openssl.cafile parameter in php.ini

Well, yes.  I wonder, though, why pdo_sqlsrv would make a
difference.  Anyhow, is this still an issue with any of the
actively supported PHP versions[1] and pdo_sqlsrv 5.9.0?

[1] <https://www.php.net/supported-versions.php>
 [2021-04-04 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 14:01:30 2024 UTC