php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #48670 xmlrpc_decode() decodes Hashtable response with integer key incorrectly
Submitted: 2009-06-24 02:12 UTC Modified: 2009-11-24 20:34 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: zhangsilly at gmail dot com Assigned:
Status: Not a bug Package: XMLRPC-EPI related
PHP Version: 5.2.10 OS: Windows XP
Private report: No CVE-ID: None
 [2009-06-24 02:12 UTC] zhangsilly at gmail dot com
Description:
------------
xmlrpc_decode decode hashtable response with integer key will ignore the key, just decode the same result as Vector.

Reproduce code:
---------------
ws-apache encode the Hashtable<Integer, String> as xmlrpc_decode's parameter:
<?php
print_r(xmlrpc_decode('<?xml version="1.0" encoding="UTF-8"?><methodResponse xmlns:ex="http://ws.apache.org/xmlrpc/namespaces/extensions"><params><param><value><struct><member><name><value><i4>3</i4></value></name><value>wps2000</value></member><member><name><value><i4>0</i4></value></name><value>ddr</value></member></struct></value></param></params></methodResponse>'));

I format the xml response here:
<?xml version="1.0" encoding="UTF-8"?>
<methodResponse xmlns:ex="http://ws.apache.org/xmlrpc/namespaces/extensions">
	<params>
		<param>
			<value>
				<struct>
					<member>
						<name>
							<value>
								<i4>3</i4>
							</value>
						</name>
						<value>wps2000</value>
					</member>
					<member>
						<name>
							<value>
								<i4>0</i4>
							</value>
						</name>
						<value>ddr</value>
					</member>
				</struct>
			</value>
		</param>
	</params>
</methodResponse>

It seems the xmlrpc_decode just take Hashtable<Integer, Object> as Vector<Object>

Expected result:
----------------
array(
    3  => wps2000
    0  => ddr
)

Actual result:
--------------
Array
(
    [0] => wps2000
    [1] => ddr
)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-11-24 20:34 UTC] jani@php.net
More recent, same issue: bug #50285

Closing this in favor of the newer report. 
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 08:01:27 2024 UTC