|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-06-20 22:40 UTC] sniper@php.net
[2005-06-21 17:30 UTC] abertolli at innovim dot com
[2005-06-21 18:00 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 16:00:01 2025 UTC |
Description: ------------ When a SOAP call takes a long time to respond, the PHP client has a segmentation fault. This is different in PHP 5.0.2 which simply returns with no results. This is unfortunate because a seg fault terminates the entire script. Reproduce code: --------------- try { $result = $soapclient->__soapCall($f,$p); print "Successful Call\n"; } catch (SoapFault $exception) { print "SOAP EXCEPTION: $exception\n"; } Where $f and $p are the SOAP function and parameters to send. Expected result: ---------------- Normal SOAP reponse Actual result: -------------- [abertolli@ssai-l1580 ISDS]$ php createMergedDataset.php createMergedDataset : Segmentation fault