Quantcast

Zend XMLRPC Server without Zend (glue?)

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Zend XMLRPC Server without Zend (glue?)

as_lh
This post has NOT been accepted by the mailing list yet.
Hi,

i did build my XMLRPC Client using Zend_XmlRpc_Client without using Zend as a framework. It worked fine.
Now i try to use the XMLRPC Server the same way but it doesn't seem to work.
Here's what i do:

$this->XmlRpcServerObject = new Zend_XmlRpc_Server();
$this->XmlRpcServerObject->setClass('WebServiceClass','test');


So far so good. But how do i send the POST Parameters to the server?
Simply putting this in a PHP File doesn't do the trick.
Can i create a Request Object myself and give it to the Server Object?
If possible: How?

I didn't find any tutorials on that online :(
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend XMLRPC Server without Zend (glue?)

Laura Dean
as_lh wrote
Can i create a Request Object myself and give it to the Server Object?
If possible: How?
I don't know if this helps, still trying to wrap my own head around XmlRpc Server, but I did find this piece:

$request = new My_XmlRpc_Request();  // extended from Zend_XmlRpc_Request
$server->setRequest($request);

Loading...