Google Code Exporter
Google Code Exporter
``` When using NTLS authentication I had an error that was solved by this patch! ``` Original comment by `[email protected]` on 23 Oct 2013 at 9:38
``` Works in Python 3.3.2 on 64-bit Windows 7. Thanks! ``` Original comment by `[email protected]` on 30 Jan 2014 at 11:26
``` This sounds like a duplicate of issue 28, which has been patched. Please download the latest revision and let me know it you are still seeing the problem. ```...
``` Hi might be a lame comment, but cud u make sure that you are not connecting from XP to Win7? nltm auth has changed between XP and Win7 rgds...
``` Uh, apologies, this probably shouldn't be marked as a defect; no idea how to change it, I'm afraid. ``` Original comment by `[email protected]` on 21 Mar 2012 at 2:21
``` Hi Chris. I too would like Pip and httpie and the rest to work behind ntlm proxies. How far did you get? Follow https://github.com/shazow/urllib3/issues/242 for my [no]progress ``` Original...
``` There's a class ProxyNtlmAuthHandler in https://code.google.com/p/python-ntlm/source/browse/trunk/python26/ntlm/HTTPNtlm AuthHandler.py that purports to do ntlm-authenticated proxying class ProxyNtlmAuthHandler(AbstractNtlmAuthHandler, urllib2.BaseHandler): """ CAUTION: this class has NOT been tested at all!!! use at your...
``` This is on RHEL 5, Linux 2.6.18-194.3.1.el5 #1 SMP Sun May 2 04:17:42 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux. Python 2.4.3. Let me know if you need any additional...
``` Forgot to set type when submitting. Should be Type-Enhancement. Don't know how to edit that. Project admin: Please edit the issue type. ``` Original comment by `[email protected]` on 8...
``` The patch needs a patch... Forgot an import in HTTPNtlmAuthHandler.py: diff --git a/HTTPNtlmAuthHandler.py b/HTTPNtlmAuthHandler.py index 6983c48..22c3d70 100644 --- a/HTTPNtlmAuthHandler.py +++ b/HTTPNtlmAuthHandler.py @@ -16,6 +16,7 @@ import base64 import httplib,...