ZF-1797: Zend_XmlRpc_Client doesn't handle Zend_XmlRpc_Value Objects as parameters
Description
$time = time(); $params = array( new Zend_XmlRpc_Value_DateTime($time) ); $result = $client->call('foo.bar', $params);
In Zend_XmlRpc_Request::_getXmlRpcParams() is parameter converted (damaged) via Zend_XmlRpc_Value::getXmlRpcValue to empty array.
Comments
Posted by Thomas Weidner (thomas) on 2007-08-04T11:22:07.000+0000
Assigned to Matthew
Posted by Matthew Weier O'Phinney (matthew) on 2007-11-16T14:57:03.000+0000
Scheduling for 1.1.0
Posted by Sergej Kurakin (realzaza) on 2008-03-04T14:22:44.000+0000
This patch should solve this issue. UnitTests passed OK on this.
Posted by Matthew Weier O'Phinney (matthew) on 2008-03-06T10:10:42.000+0000
Scheduling for 1.5.0RC2
Posted by Matthew Weier O'Phinney (matthew) on 2008-03-06T20:41:13.000+0000
Applied in trunk and release branch, with a corresponding unit test. Oddly, the test ran with or without the patch; I'll look at it in more detail later.