: Bug #37523 :: namespaces added too late, leads to missing xsi:type attributes
| Bug #37523 | namespaces added too late, leads to missing xsi:type attributes | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2006-05-19 16:49 UTC | Modified: | 2006-05-26 09:09 UTC |
|
||||||||||
| From: | pav at FreeBSD dot org | Assigned: | dmitry (profile) | |||||||||||
| Status: | Closed | Package: | SOAP related | |||||||||||
| PHP Version: | 5.1.4 | OS: | any | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2006-05-19 16:49 UTC] pav at FreeBSD dot org
Description:
------------
Changes made in libxml2 between version 2.6.23 and 2.6.24, exactly rev. 1.366 of tree.c, exactly added return(NULL) in xmlSetProp(), cause attributes with unknown namespaces to be silently dropped, instead of added into the document.
PHP SOAP extension, when making a client request, when running in "encoded" mode, is adding xsi:type attributes to nodes (soap.c line 3948). The xmlns:xsi namespace is added later in that function (soap.c line 4073).
Paired with the behaviour of a new libxml2 release, this leads to the xsi:type attribute not being added.
Possible solution is to move if (use == ENCODED) block above the for (i = 0; i < arg_count; i++) block in serialize_function_call() in soap.c.
Reproduce code:
---------------
$client = new SoapClient("https://oas.hide.vol.cz:4444/WS-NPLAN-context-root/WS_NPLAN?WSDL", array("trace"=>true));
$client->getProfil(4);
Expected result:
----------------
... <ns1:getprofil><profil xsi:type="xsd:decimal">4</profil></ns1:getprofil> ...
Actual result:
--------------
... <ns1:getprofil><profil>4</profil></ns1:getprofil> ...
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2006-05-26 09:09 UTC] dmitry@php.net