Hi. I have a problem in xmlrpc call. The error message says > Warning: each(): Node no longer exists in library\Zend\XmlRpc\Value.php on line 495 which is related to ` protected static function _extractTypeAndValue(SimpleXMLElement $xml, &$type, &$value) { list($type, $value) = each($xml);` if (!$type and $value === null) { $namespaces = array('ex' => 'http://ws.apache.org/xmlrpc/namespaces/extensions'); foreach ($namespaces as $namespaceName => $namespaceUri) { $namespaceXml = $xml->children($namespaceUri); list($type, $value) = each($namespaceXml); if ($type !== null) { $type = $namespaceName . ':' . $type; break; } } } Is it a bug or am I doing sth wrong?
Hi. I have a problem in xmlrpc call. The error message says
which is related to
protected static function _extractTypeAndValue(SimpleXMLElement $xml, &$type, &$value) { list($type, $value) = each($xml);Is it a bug or am I doing sth wrong?