|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-09-07 13:24 UTC] dmitry@php.net
[2009-09-08 12:24 UTC] joep at clickhere dot nl
[2009-09-08 13:27 UTC] dmitry@php.net
[2009-09-16 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
Description: ------------ I was hunting a bug in our soap-client. 'xsi:type' appears in the xml, even when the WSDL states 'use="literal"'. Our client works fine with 5.2.4, but since 5.2.7/5.2.8 its broken (Also tested 5.2.9) Came across this fix in ext/soap/php_encoding.c + if (encode != enc && style == SOAP_LITERAL) { add_type = 1; - } Shouldn't that be: if (encode != enc && style == SOAP_ENCODED) { add_type = 1; }