This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Digest Authentication not working in all cases
Type: behavior Stage: test needed
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: jjlee, jsgaarde99, orsenthil
Priority: normal Keywords: easy, patch

Created on 2005-09-08 22:31 by jsgaarde99, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
mappoint.py jsgaarde99, 2005-09-08 22:31 Provoke Digest Challenge
Messages (2)
msg26254 - (view) Author: Jakob Simon-Gaarde (jsgaarde99) Date: 2005-09-08 22:31
I feel I better report this as a bug, since urllib2's
digest authentication handler fails where others
succeed. I have been trying to authenticate against an
IIS server at Microsoft hosting MapPoint SOAP services.
The host requres Digest authentication but urllib2
fails to authenticate with the credentials I have
recieved. When I authenticate using firefox the browser
I imediately succeed and gain access to a browsable
service API. C# dotnet's SOAP client also succeeds in
authenticating. Therefore I have made my own conclusion
that urllib.HTTPDigestAuthHandler must be doing
something wrong. I can provide the authentication
credentials needed to test and correct the bug, but
this would have to be through an email, so I don't
break to many laws.

In the attached file is the script I have used to
provoke the digest challenge.

Jakob Simon-Gaarde
msg94136 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2009-10-16 10:40
I am inclined to reject this issue and close it as:
1) Digest Authentication does with urllib2
2) This is specific with some domain, which does not give enough details
to reproduce it.
3) The report is way old (2005).
If there are any new issues with Digest Authentication, lets handle it
in  a new issue with more details.
History
Date User Action Args
2022-04-11 14:56:12adminsetgithub: 42358
2009-10-16 10:40:16orsenthilsetstatus: open -> closed
resolution: rejected
messages: + msg94136
2009-04-22 17:22:38ajaksu2setkeywords: + patch, easy
2009-02-13 02:03:27ajaksu2setnosy: + jjlee
2009-02-12 18:08:18ajaksu2setnosy: + orsenthil
stage: test needed
type: behavior
components: + Library (Lib), - Extension Modules
versions: + Python 2.6, - Python 2.4
2005-09-08 22:31:11jsgaarde99create