Posted by andy on 03/15/07 18:26
We are setting up a 3 tiered web application whereby application calls
are made via SOAP requests. For performance reasons, we are thinking
of moving to xml rpc (or at least trying it out), but one problem
seems to be that when you create an xml rpc server object in the
various implementations I've found on the net you can't set it to
persist throughout the session like you can with SOAP. With SOAP you
have this:
$server->setPersistence(SOAP_PERSISTENCE_SESSION);
$server->setPersistence(SOAP_PERSISTENCE_REQUEST);
Where you can persist your object throughout a session. We need this
functionality because we make use of instantiated application objects
so the data needs to persist from request to request. Does anyone
know of an xml rpc implementation that has this functionality? Most
implementations I've seen are pretty simple and are used mainly for
single static application calls.
[Back to original message]
|