Hi, I got my SOAP script working to GlobalSign, thanks to the help from Dieter and I can now download certificates with the script.
I was running on Python 2.7 and it works great there but now I have to deploy the script on some Redhat workstations running python 2.4.3 (which I am not allowed to upgrade) When I create my client in my script I do it like this: url = 'https://system.globalsign.com/cr/ws/GasOrderService?wsdl' proxy = {'https': proxylog + ":" + proxypass + '@proxyhost.int:9999'} globalClient = Client(url, proxy=proxy) This works GREAT on 2.7 but when I run it on 2.4 I get: File "/usr/lib64/python2.4/urllib2.py", line 580, in proxy_open if '@' in host: TypeError: iterable argument required I'm Googling it and I can see there are other ways to connect but can't seem to get the syntax. Can anyone help. Thanks in advance, -- Jerry Rocteur [email protected] _______________________________________________ Soap mailing list [email protected] https://mail.python.org/mailman/listinfo/soap
