Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #61467

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

From Mark Lawrence <breamoreboy@yahoo.co.uk>
Subject Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Date 2013-12-10 13:48 +0000
References <8fe2ad78-0bd4-40d8-909c-1d2784441e3c@s31g2000yqs.googlegroups.com> <58f2558c-33fe-4ee0-9a0a-2563374be47c@x6g2000prc.googlegroups.com> <446a3c42-6d86-4003-85be-3e5d8a23b268@c14g2000yqm.googlegroups.com> <a57d1f96-20f4-4c12-b106-0dae360f65bf@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.3826.1386683310.18130.python-list@python.org> (permalink)

Show all headers | View raw


On 10/12/2013 13:35, harish.barvekar@gmail.com wrote:
> On Monday, July 20, 2009 11:28:53 PM UTC+5:30, tvashtar wrote:
>> On Jul 20, 4:42 pm, Nike <nike...@gmail.com> wrote:
>>> hi!
>>>   It's looks like a ssl error . Under the following step to help u :
>>>    1. takes a simple code to confirm your pupose without ssl protocol.
>>>    2. to confirm python version and extended libs work well
>>>    3. to confirm ssl work well.
>>>
>>> goog luck!
>>>
>>> nikekoo
>>
>> I've reduced my code to the following:
>>
>> import urllib2
>>
>> p = "https://user:pass@myproxy:port"
>> proxy_handler = urllib2.ProxyHandler({"https": p})
>> urllib2.install_opener(urllib2.build_opener(proxy_handler))
>> request = urllib2.Request( "https://groups.google.com")
>> response = urllib2.urlopen(request)
>>
>> and it is now failing with:
>>
>> Traceback (most recent call last):
>>    File "D:\p4\depot\Development\HEAD\Build\ReleaseSystem\DownloadSystem
>> \test.py", line 12, in <module>
>>      response = urllib2.urlopen(request)
>>    File "C:\Python25\lib\urllib2.py", line 121, in urlopen
>>      return _opener.open(url, data)
>>    File "C:\Python25\lib\urllib2.py", line 379, in open
>>      response = self._open(req, data)
>>    File "C:\Python25\lib\urllib2.py", line 397, in _open
>>      '_open', req)
>>    File "C:\Python25\lib\urllib2.py", line 358, in _call_chain
>>      result = func(*args)
>>    File "C:\Python25\lib\urllib2.py", line 1115, in https_open
>>      return self.do_open(httplib.HTTPSConnection, req)
>>    File "C:\Python25\lib\urllib2.py", line 1082, in do_open
>>      raise URLError(err)
>> urllib2.URLError: <urlopen error Tunnel connection failed: 407 Proxy
>> Authentication Required>
>>
>> I thought the proxy_handler should take care of the authentication?
>>
>> Thanks for your help
>
> Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to proceed further
>

Please read the whole history of this here 
http://bugs.python.org/issue1424152

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: Problem when applying Patch from issue1424152 to get https over  authenticating proxies working with urllib2 in Python 2.5 harish.barvekar@gmail.com - 2013-12-10 05:35 -0800
  Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Chris Angelico <rosuav@gmail.com> - 2013-12-11 00:47 +1100
    Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rurpy@yahoo.com - 2013-12-10 07:48 -0800
      Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 16:22 +0000
        Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rusi <rustompmody@gmail.com> - 2013-12-10 08:49 -0800
          Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Chris Angelico <rosuav@gmail.com> - 2013-12-11 03:54 +1100
            Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Grant Edwards <invalid@invalid.invalid> - 2013-12-10 17:12 +0000
          Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 16:58 +0000
        Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rurpy@yahoo.com - 2013-12-10 08:59 -0800
          Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 17:05 +0000
          Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 David Robinow <drobinow@gmail.com> - 2013-12-10 12:36 -0500
            Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rurpy@yahoo.com - 2013-12-10 10:15 -0800
  Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 13:48 +0000
  Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 14:06 +0000
  Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Chris Angelico <rosuav@gmail.com> - 2013-12-11 01:14 +1100
  Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 14:54 +0000

csiph-web