|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-08-14 07:35 UTC] guillaume dot bretou at gmail dot com
[2020-12-18 16:39 UTC] cmb@php.net
-Status: Open
+Status: Closed
-Package: Class/Object related
+Package: *General Issues
-Assigned To:
+Assigned To: cmb
[2020-12-18 16:39 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 06:00:01 2025 UTC |
Description: ------------ When creating a SOAP client on a non-existing WSDL file, there will be an fatal error when xdebug is installed. In other cases it throws an Exception. PHP Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'abc' : failed to load external entity "abc" vs. class SoapFault#3 (10) { protected $message => string(90) "SOAP-ERROR: Parsing WSDL: Couldn't load from 'abc' : failed to load external entity "abc"\n" ... Test script: --------------- try { $a = new SoapClient('abc'); } catch (Exception $e) { var_dump($e); } Expected result: ---------------- Same error, independent from installed extensions (ideal case: Exception because it's catchable)