|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-04-16 22:39 UTC] piperj01 at u dot washington dot edu
Description:
------------
Trying to pass a Boolean value as a parameter when invoking a webservices via SOAP. But when using calls like:
new SOAPVar('false', XSD_BOOLEAN, null, null, null, $ns)
The resulting XML shows 'true' not 'false'.
Looks like it is related to bug 33602. I suspect something to do with soap.c function serialize_function_call() around line 4298. The code there appears to do work related to the 'true' case, but not the 'false' case.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 07:00:01 2025 UTC |
Also, I noticed if I use: new SOAPVar('', XSD_BOOLEAN, null, null, null, $ns) That the generated will show up as 'false'. This can be used as a workaround since 'false' doesn't appear to work.