How to connect to a SOAP-based web service with Suds over a proxy that requires authentication
I’m writing a small Python program to connect to a SOAP-based web service using Suds and just ran into an issue with authenticating to our proxy server. I’m able to connect fine if the web service runs on http, but the web service we need to connect to uses https and the urllib2 module threw an error:
urllib2.URLError: <urlopen error Tunnel connection failed: 407 Proxy Authentication Required>
The solution in my case is to upgrade …