Edit report at http://bugs.php.net/bug.php?id=53023&edit=1

 ID:                 53023
 User updated by:    daniel dot seif at castex dot de
 Reported by:        daniel dot seif at castex dot de
 Summary:            Fatal error gets displayed but is not fatal
 Status:             Bogus
 Type:               Bug
 Package:            SOAP related
 Operating System:   *
-PHP Version:        5.3.3
+PHP Version:        5.3.5
 Block user comment: N
 Private report:     N

 New Comment:

I don't know how this is tested before it is marked as bogus, but I can
still reproduce this error: I just downloaded
php-5.3.5-nts-Win32-VC9-x86 and ran the script again with the same
result.



What can I deliver so you can dig deeper into this?



Result:



PHP Fatal error:  SOAP-ERROR: Parsing WSDL: Couldn't load from
'nonexistentfile.wsdl' : failed to load external entity
"nonexistentfile.wsdl"

 in C:\Dokumente und Einstellungen\dseif\Eigene
Dateien\Downloads\php-5.3.5-nts-Win32-VC9-x86\test.php on line 11

caught exception: SoapFault: SOAP-ERROR: Parsing WSDL: Couldn't load
from 'nonexistentfile.wsdl' : failed to load external entity
"nonexistentfile.wsdl"

if we had a real Fatal error, we wouldn't execute this line


Previous Comments:
------------------------------------------------------------------------
[2011-02-07 15:00:48] il...@php.net

Thank you for taking the time to report a problem with PHP.
Unfortunately you are not using a current version of PHP -- 
the problem might already be fixed. Please download a new
PHP version from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".
Again, thank you for your continued support of PHP.

Cannot reproduce this either using the provided script on PHP 5.3.4

------------------------------------------------------------------------
[2010-10-16 23:42:43] daniel dot seif at castex dot de

I just tested again:



New Test script:



<?php



error_reporting(E_ALL | E_STRICT);

ini_set('display_error', 'on');

header('Content-Type: text/plain');



try {

        $client = new SoapClient('nonexistentfile.wsdl');

} catch (Exception $e) {

        echo "caught exception: ", get_class($e), ": ",
$e->getMessage();

}



echo "if we had a real Fatal error, we wouldn't execute this line\n";



print_r(error_get_last());



?>



The result is the same as written in the bug report. There's also an
entry with a fatal error in the web server's error log:



[Sat Oct 16 23:39:54 2010] [error] [client ::1] PHP Fatal error: 
SOAP-ERROR: Parsing WSDL: Couldn't load from 'nonexistentfile.wsdl' :
failed to load external entity "nonexistentfile.wsdl"\n in
/var/www/test2.php on line 8

------------------------------------------------------------------------
[2010-10-09 01:21:41] fel...@php.net

I can't reproduce this.

------------------------------------------------------------------------
[2010-10-08 10:50:02] daniel dot seif at castex dot de

Description:
------------
When creating a soap client on a non-existing wsdl, an exception gets
thrown and at the same time, a fatal error gets logged, but the script
continues.



Test script:
---------------
try {

        $client = new SoapClient('nonexistentfile.wsdl');

} catch (Exception $e) {

        echo "catched exception: ", get_class($e), ": ", $e->getMessage();

}



echo "if we had a real Fatal error, we wouldn't execute this line\n";

Expected result:
----------------
catched exception: SoapFault: SOAP-ERROR: Parsing WSDL: Couldn't load
from 'nonexistentfile.wsdl' : failed to load external entity
"nonexistentfile.wsdl"

if we had a real Fatal error, we wouldn't execute this line



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

 in /cab/src/dev/htdocs/test/scratchbook.php on line 102

catched exception: SoapFault: SOAP-ERROR: Parsing WSDL: Couldn't load
from 'nonexistentfile.wsdl' : failed to load external entity
"nonexistentfile.wsdl"

if we had a real Fatal error, we wouldn't execute this line




------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=53023&edit=1

Reply via email to