I'm trying to get a simple client/server XMLRPC server setup but I am having trouble using parameters. The code runs fine if I take the $client_id parameter out of the fetchClient() method and $client->call(). However if I include it, the server returns "Calling parameters do not match signature"
Controller Code:
class XmlrpcController...
I am using the Zend library's XML RPC Client in a PHP application to pull data from another server over XML RPC. However the other server is using HTTP basic authentication. How can I tell the XMLRPC client to use authentication for the requests?
...
Am trying to get a simple hello world XMLRPC server setup to work.However I get this Failed to parse response error error when I run the test URL
http://localhost/client/index/ on my browser
In my Rpc Controller that handles all my XMLRPC calls
class RpcController extends Zend_Controller_Action
{
public function init()
{
...
I have something like:
$client = new Zend_XmlRpc_Client('<XML-RPC URL>');
$result = $client->call('<method name>', array( ... ));
I get an XML string in $result. Is Zend capable of marshalling this XML into some object or associative array?
If Zend doesn't marshall this automatically and I have to do so using plain PHP, how is it be...