|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-20 13:55 UTC] dmitry@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 10:00:01 2025 UTC |
Description: ------------ When calling a Class by Soap, the SoapServer-Script seems to log/show no errors. On fatal error occuring in the Server, the client will recieve a SoapFault with the Error-Description but Line-Number of the Client-Call. SoapClient::__getLastResponse() contains no error-output from Server. Reproduce code: --------------- // The Server (testServer.php) <?PHP class test { public function testMe () { unknown_function(); } } $obj = new SoapServer(null, array ("uri"=>"http://test-uri/")); $obj->setClass("test"); $obj->handle(); ?> // The Client (testClient.php) <?PHP $obj = new SoapClient(null, array ('location' => "http://url.to/testServer.php","uri"=>"http://test-uri/", 'trace'=>1)); $obj->testMe (); ?> Expected result: ---------------- Any error logging (in php error logfile): PHP Fatal error: Call to undefined function unknown_function() in testServer.php:5 and any direct error-output from the SoapServer-Script. (to access directly by using SoapClient::__getLastResponse()) Actual result: -------------- No logging of the error occured in testServer.php. Only Html-Output and Log-entry from the uncaught exception in testClient.php: Fatal error: Uncaught SoapFault exception: [SOAP-ENV:Server] Call to undefined function unknown_function() in /testClient.php:4 Stack trace: #0 /testClient.php(4): SoapClient->testMe('testMe', Array) #1 {main} thrown in /testClient.php on line 4