ID: 49045 Updated by: fel...@php.net Reported By: kelvin at netbasic dot co dot uk -Status: Open +Status: Feedback Bug Type: SOAP related Operating System: Centos 4.7 and 5.3 PHP Version: 5.3.0 New Comment:
Thank you for this bug report. To properly diagnose the problem, we need a backtrace to see what is happening behind the scenes. To find out how to generate a backtrace, please read http://bugs.php.net/bugs-generating-backtrace.php for *NIX and http://bugs.php.net/bugs-generating-backtrace-win32.php for Win32 Once you have generated a backtrace, please submit it to this bug report and change the status back to "Open". Thank you for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2009-07-24 08:49:18] kelvin at netbasic dot co dot uk Description: ------------ The PHP 5.3 SoapClient seems to have trouble connecting to certain services, we use a lot of 3rd party SOAP web services and have no issues using them with PHP 5.2.x, but 5.3 seems to have problems with around 50% of them. The problem seems to occur mostly upon instantiation of the SoapClient when using a Windows based service with a WSDL, as far I can tell it doesn't like the initial response. Reproduce code: --------------- $url = 'http://webservices.data-8.co.uk/TelephoneValidation.asmx?WSDL'; echo "creating client..<Br>"; $client = new SoapClient($url); echo "client created.."; Expected result: ---------------- You would see the output below, and have a useable SoapClient object: creating client.. client created.. Actual result: -------------- Nothing will be returned and you will get an seg fault error in the Apache logs. [Fri Jul 24 09:37:10 2009] [notice] child pid 17265 exit signal Segmentation fault (11) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=49045&edit=1