-- 张心灵 <[EMAIL PROTECTED]> wrote
(on Tuesday, 19 June 2007, 08:49 AM +0800):
> But the function with parameter still throws Exception with this message:
>  
> Fatal error: Uncaught exception 'Zend_XmlRpc_Client_FaultException' with
> message 'Failed to parse response' in E:\Program Files\web\zf\Zend\XmlRpc\

"Failed to parse response" typically indicates that the return from the
server was mal-formed XML. Most often, this is caused by PHP displaying
notice and warning messages, which interrupts the XML and invalidates
it. Try setting the following in your XML-RPC server bootstrap:

    ini_set('display_errors', 0);

and see if it changes anything. 

-- 
Matthew Weier O'Phinney
PHP Developer            | [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/

Reply via email to