Re: urllib2 EOF occurred in violation of protocol with proxy

2005-05-19 Thread Paul Rubin
"Bloke" <[EMAIL PROTECTED]> writes: > The site works fine if I do not go through the proxy, so it appears the > proxy is not returning an EOF. I been searching for an answer, and > found many other sites where people have had the same problem. Some > have suggested m2crypto. > > Is there a work

urllib2 EOF occurred in violation of protocol with proxy

2005-05-19 Thread Bloke
I want to connect to a https server through an authenticating proxy like this: import urllib2 proxy_info = { 'user' : 'me', 'pass' : 'password', 'host' : 'mycompany.com.au', 'port' : 8008 } # build a new opener that uses a proxy requiring authorization proxy_support = urllib2.Pr