Thanks ;-)
Jacobo
"Sandeep" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Check out the following link. It helped me achieve the same thing
> (access a HTTPS site via a proxy).
>
> http://groups.yahoo.com/group/linux-bangalore-programming/message/4208
> Cheers,
> Sandeep
> http://sa
Check out the following link. It helped me achieve the same thing
(access a HTTPS site via a proxy).
http://groups.yahoo.com/group/linux-bangalore-programming/message/4208
Cheers,
Sandeep
http://sandeep.weblogs.us/
--
http://mail.python.org/mailman/listinfo/python-list
I have made some tests with Curl and this proxy setting is correct
It's seems that there is a problem with HTTPS and urllib2 + proxy
Bye,
Jacobo
"Tom" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> > I would like to access an HTTPS site via a proxy
> > The following code is working f
I would like to access an HTTPS site via a proxy
The following code is working for HTTP://www.hotmail.com but not for HTTPS
I have try with other sites without success
l_proxy_info = {
'user' : mylogin,
'pass' : mypassword,
'host' : myproxy,
'port' : 8080
}
I have no idea if