urllib2 not support proxy on SSL connection?

2006-05-02 Thread itay_k
Hi, I am running the following simple code (just open connection to some https page with proxy): proxy= '666.179.227.666:80' proxy=urllib2.ProxyHandler({https:'https://'+proxy}) opener = urllib2.build_opener(proxy) request = urllib2.Request('https://somehttpspage') response =

Re: urllib2 not support proxy on SSL connection?

2006-05-02 Thread Heiko Wundram
Am Dienstag 02 Mai 2006 23:22 schrieb itay_k: Is it possible that urllib2 doesnt support for proxy over https connections? Are you sure this a proxy which is accessed by https, or rather a proxy that supports CONNECT, and thus allows you to access https-sites? I'd guess the latter, which I

Re: urllib2 not support proxy on SSL connection?

2006-05-02 Thread John J. Lee
Heiko Wundram [EMAIL PROTECTED] writes: Am Dienstag 02 Mai 2006 23:22 schrieb itay_k: Is it possible that urllib2 doesnt support for proxy over https connections? Are you sure this a proxy which is accessed by https, or rather a proxy that supports CONNECT, and thus allows you to access

Re: urllib2 not support proxy on SSL connection?

2006-05-02 Thread John J. Lee
Heiko Wundram [EMAIL PROTECTED] writes: Am Dienstag 02 Mai 2006 23:22 schrieb itay_k: Is it possible that urllib2 doesnt support for proxy over https connections? Are you sure this a proxy which is accessed by https, or rather a proxy that supports CONNECT, and thus allows you to access