ZF-10978: XmlRpc server does not handle struct values
Description
There is a major bug in XmlRpc_Value::_phpVarToNativeXmlRpc() inside the switch (self::getXmlRpcTypeByValue($value)) when value is a struct it is NOT handled => and parsed as a string (default). The valid code for struct is inside the array block, which is never executed... quick fix = add case "struct": after case "array":
in ZF 11.0 faultCode630faultStringUnable to read request in ZF 11.2 Array
Comments
Posted by Ramon Henrique Ornelas (ramon) on 2011-01-25T18:30:05.000+0000
Duplicates of the issue ZF-10920.