|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [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) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 10:00:02 2025 UTC | 
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"; }