Re: Add NTLM proxy authentication to urllib2

2006-09-08 Thread John J. Lee
"looping" <[EMAIL PROTECTED]> writes: > I've done some tests with urllib2 and pywin32 and managed to partialy > implement the NTLM authentication, but it look like you need a > persistent connection (http 1.1 or 'Keep-Alive') to complete the > authentication. > Unfortunatly, urllib2 use a new conn

Re: Add NTLM proxy authentication to urllib2

2006-09-08 Thread looping
Thanks for the answers. I've done some tests with urllib2 and pywin32 and managed to partialy implement the NTLM authentication, but it look like you need a persistent connection (http 1.1 or 'Keep-Alive') to complete the authentication. Unfortunatly, urllib2 use a new connection for each request

Re: Add NTLM proxy authentication to urllib2

2006-09-07 Thread John J. Lee
Jarek Zgoda <[EMAIL PROTECTED]> writes: > looping napisał(a): > > > I have to make internet connections through an ISA proxy server that > > use NTLM or Kerberos authorization method. > > I've found a program in python called ntlmaps that act like a proxy and > > could make the NTLM authenticatio

Re: Add NTLM proxy authentication to urllib2

2006-09-05 Thread Jarek Zgoda
looping napisał(a): > I have to make internet connections through an ISA proxy server that > use NTLM or Kerberos authorization method. > I've found a program in python called ntlmaps that act like a proxy and > could make the NTLM authentication, but you have to run it and make all > your connect

Add NTLM proxy authentication to urllib2

2006-09-05 Thread looping
Hi, I have to make internet connections through an ISA proxy server that use NTLM or Kerberos authorization method. I've found a program in python called ntlmaps that act like a proxy and could make the NTLM authentication, but you have to run it and make all your connection through it, not an opti