Re: xmlrpc with Basic Auth

2006-09-16 Thread Milos Prudek
> 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

Re: xmlrpc with Basic Auth

2006-09-15 Thread Bryan
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

xmlrpc with Basic Auth

2006-09-15 Thread Milos Prudek
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