|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-10-16 09:58 UTC] marco dot marsala at live dot it
[2021-03-23 17:02 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-03-23 17:02 UTC] cmb@php.net
[2021-04-04 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 22 19:00:01 2025 UTC |
Description: ------------ The SoapClient in WSDL mode fails with well-formed and validated WSDL containing comments. I'm experiencing this problem in PHP 5.6.14. The same code, with the same WSDL, works perfectly in PHP 5.3.3 on the same machine. Test script: --------------- try { $client = new SoapClient('https://admin.fatturapa.aruba.it/fatturapaupload/uploadws?wsdl'); } catch(Exception $e) { var_dump($e) } Expected result: ---------------- No exceptions are thrown. Actual result: -------------- Exception is thrown on PHP 5.6.14 No exceptions are thrown on PHP 5.3.3 on the same machine.