http over auth/proxy

2004-03-30 Thread bernhard . sammer
In the latest CVS version of wget (revision 1.231) HTTP over a proxy with authentication fails because of HTTP/1.0 407 Proxy Authentication Required. The same does not happen with HTTPS. There seems to be some code sending authorization information that is executed for HTTPS but missing for

RE: I have no idea how to work wget...

2004-03-30 Thread Herold Heiko
Keep present wget is a command line application - doubleclick on wget.exe won't accomplish anything. Opening a command prompt and running wget is a bit better, you'll get this output: wget: missing URL Usage: wget [OPTION]... [URL]... Try `wget --help' for more options. Here

Re: http over auth/proxy

2004-03-30 Thread Hrvoje Niksic
It's a bug caused by an oversight, thanks for the report. Please let me know if this patch corrects the problem: 2004-03-30 Hrvoje Niksic [EMAIL PROTECTED] * http.c (gethttp): Send the Proxy-Authorization header over non-SSL connections too. Index: src/http.c

Re: http over auth/proxy

2004-03-30 Thread Daniel Stenberg
On Tue, 30 Mar 2004, Hrvoje Niksic wrote: * http.c (gethttp): Send the Proxy-Authorization header over non-SSL connections too. I couldn't really tell from this diff, but I thought I'd remind you: If you are using SSL over a proxy, you should not send the Proxy-Authorization in

Re: http over auth/proxy

2004-03-30 Thread Hrvoje Niksic
Daniel Stenberg [EMAIL PROTECTED] writes: On Tue, 30 Mar 2004, Hrvoje Niksic wrote: * http.c (gethttp): Send the Proxy-Authorization header over non-SSL connections too. I couldn't really tell from this diff, but I thought I'd remind you: If you are using SSL over a proxy, you

Re: http over auth/proxy

2004-03-30 Thread Hrvoje Niksic
I've now applied this patch.