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

 ID:                 53023
 Comment by:         daniel at dnaielcraig dot me
 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.5
 Block user comment: N
 Private report:     N

 New Comment:

Still getting this behavior with 5.3.8


Previous Comments:
------------------------------------------------------------------------
[2011-02-07 15:50:55] daniel dot seif at castex dot de

If this helps: In version 5.2.4 the script generates a warning instead of an 
error.

------------------------------------------------------------------------
[2011-02-07 15:33:27] daniel dot seif at castex dot de

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

------------------------------------------------------------------------
[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.

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


The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

    https://bugs.php.net/bug.php?id=53023


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

Reply via email to