我试图让一个简单的 hello world XMLRPC 服务器设置工作。但是当我在浏览器上运行测试 URL http://localhost/client/index/时,我得到这个Failed to parse response 错误错误
在我处理所有 XMLRPC 调用的 Rpc 控制器中
class RpcController extends Zend_Controller_Action
{
public function init()
{
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
}
public function xmlrpcAction()
{
$server = new Zend_XmlRpc_Server();
$server->setClass('Service_Rpctest','test');
$server->handle();
}
}
在调用 XMLRPC 服务器的客户端控制器中
class ClientController extends Zend_Controller_Action
{
public function indexAction()
{
$clientrpc = new Zend_XmlRpc_Client('http://localhost/rpc/xmlrpc/');
//Render Output to the view
$this->view->rpcvalue = $clientrpc->call('test.sayHello');
}
}
在我的 Service_Rpctest 函数中
<?php
class Service_Rpctest
{
/**
* Return the Hello String
*
* @return string
*/
public function sayHello()
{
$value = 'Hello';
return $value;
}
}
我错过了什么?