From lam at tuxfamily.org Sun Feb 18 08:00:44 2007 From: lam at tuxfamily.org (Nicolas Lamirault) Date: Sun, 18 Feb 2007 09:00:44 +0100 Subject: [s-xml-rpc-devel] s-xml-rpc simple problem. Message-ID: <874ppjvqs3.fsf@no-log.org> hello, i try to use s-xml-rpc to test the Gandi XML RPC API. In python, there is an example code : import sys import xmlrpclib proxy = xmlrpclib.ServerProxy("https://api.ote.gandi.net/xmlrpc/") try: session = proxy.login("AA1234-GANDI", "mypassword") except xmlrpclib.Fault, e: print "could not login because: " + e.faultString sys.exit(67) it is possible to make this call with s-xml-rpc ? Thanks for any help.