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.