|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesTWSfSopc (last revision 2024-06-26 22:30 UTC by testing at example dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-01 19:21 UTC] tony2001@php.net
[2010-12-29 14:05 UTC] jani@php.net
-Summary: PECL::SOAP soapfault mixed up parameters
+Summary: soapfault mixed up parameters
-Package: PECL related
+Package: SOAP related
-Assigned To:
+Assigned To: jani
[2024-06-26 22:30 UTC] testing at example dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 04:00:01 2025 UTC |
Description: ------------ The soap client object has swapped parameters "faultstring" and "faultcode" in an array returned by method __getFault(). Here is a patch that fixes the problem. --- soap.c 14 Mar 2003 02:08:30 -0000 1.17 +++ soap.c 22 Aug 2003 16:39:29 -0000 @@ -1646,7 +1646,7 @@ { zval *fault; MAKE_STD_ZVAL(fault); - set_soap_fault(fault, fault_string, fault_code, fault_actor, fault_detail TSRMLS_CC); + set_soap_fault(fault, fault_code, fault_string, fault_actor, fault_detail TSRMLS_CC); add_property_zval(obj, "__soap_fault", fault); }