SQL Qeries via XMLRPC

Fredrik Lundh fredrik at pythonware.com
Wed Aug 11 08:02:34 EDT 2004


Roger Binns wrote:

> The existing standard Python library XML-RPC works
> well, but has the limitation that it doesn't fully
> support HTTP authentication and it uses one connection
> per request.  The authentication issue can be solved
> by making authentication part of your exposed APIs,
> not the underlying XML-RPC transport.
>
> The one connection per request will presumably be
> solved in a future release of the Python library
> and generally is not an issue on a LAN.

the standard transport does this, yes.

it's fairly easy to plug in your own transports (just subclass Transport,
override as necessary, and pass an instance of your custom transport
to the ServerProxy class).

</F>






More information about the Python-list mailing list