> i'm currently using xmlrpclib with basic auth and i use it like this:
> from xmlrpclib import Server
> s=Server("http://user:[EMAIL PROTECTED]/rpc.php")
Perfect! Thank you.
--
Milos Prudek
--
http://mail.python.org/mailman/listinfo/python-list
Milos Prudek wrote:
> I need to use XML-RPC call with Basic Authorization in HTTP headers. I found
> xmlrpclibBasicAuth.py, and it can be used as follows:
>
> from xmlrpclibBasicAuth import Server
> s=Server("http://www.example.com/rpc.php","user","pwd";)
> print s.system.listMethods()
>
> Is th
I need to use XML-RPC call with Basic Authorization in HTTP headers. I found
xmlrpclibBasicAuth.py, and it can be used as follows:
from xmlrpclibBasicAuth import Server
s=Server("http://www.example.com/rpc.php","user","pwd";)
print s.system.listMethods()
Is this possible in plain xmlrpclib, with