php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #53899 SoapClient invalid wsdl crashes php with file error_log active
Submitted: 2011-02-01 10:01 UTC Modified: 2015-05-03 04:22 UTC
From: serge at mch dot be Assigned:
Status: No Feedback Package: SOAP related
PHP Version: 5.3.5 OS: Windows Server 2003 R3
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: serge at mch dot be
New email:
PHP Version: OS:

 

 [2011-02-01 10:01 UTC] serge at mch dot be
Description:
------------
See :

http://bugs.php.net/bug.php?id=48706

SoapClient crashes the PHP when invalid wsdl_url is used and file php log output is configured in the php.ini.

Test script:
---------------
PHP code:
<?php
new SoapClient('http://example.com');
?>

php.ini-dist and php.ini changes:

--- C:/php5/php.ini-dist
+++ C:/php5/php.ini

-log_errors = Off
+log_errors = On

-;error_log = filename
+error_log = c:/php_log

-;extension=php_soap.dll
+extension=php_soap.dll



Expected result:
----------------
SoapFault Exception should be thrown.


Actual result:
--------------
FastCGI Error (Error 500)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-04-23 20:52 UTC] cmb@php.net
-Status: Open +Status: Feedback
 [2015-04-23 20:52 UTC] cmb@php.net
An uncaught execption will cause a fatal PHP error which is likely to cause a 500 response status code. Please try the following code:

    <?php
    
    try {
        new SoapClient('http://example.com');
    } catch (SoapFault $ex) {
        echo "SoapFault Exception";
    }
 [2015-05-03 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: Thu Apr 18 11:01:28 2024 UTC