Access to XML dataBase

Fredrik Lundh fredrik at pythonware.com
Thu Jun 20 11:49:05 EDT 2002


Marta Gutierre wrote:
> I tried sothing like:
>
> import xmlrpclib
> client=xmlrpclib.Server("http://localhost:4080")
> try:
>      client.listCollections("db")
> except xmlrpclib.Fault,faultobj:
>     print "ERROR", faultobj
> ERROR <Fault 0: 'java.lang.Exception: RPC handler object not
> found for "listCollections": no default handler registered.'>
>
> Any idea of what does it mean ???

the Java server is trying to tell you that there is no
"listCollection" handler.

> I can't find good documentation of XML-RPC in Python

it's not a Python problem, really...

</F>





More information about the Python-list mailing list