This is my code:
from pysimplesoap.client import SoapClient,SimpleXMLElement
client = SoapClient(wsdl='urlToMyWsdl?wsdl')
print client.help("myMethod")
client.myMethod(arg0='mystring', arg1='thisCauseMeError')
the help function prints: myMethod(arg0=type 'str'>, arg1=*{}*)
in myMethod at wsdl file, the variable arg1 is base64Binary. python expects a Ordered dictionary, but I dont know how to set it. Any Ideas?