I'm having trouble with downloading a file across https using wget. I can't figure out if it is something i'm doing wrong with wget syntax, or if the httpd server isn't working like it should.
# wget -d https://filed1/InBox/FILE3 --http-user=blahuser --http-passwd=blahpw DEBUG output created by Wget 1.8.2 on linux-gnu. --08:05:04-- https://filed1/InBox/FILE3 => `FILE3' Resolving filed1... done. Caching filed1 => 10.144.52.235 Connecting to filed1[10.144.52.235]:443... connected. Created socket 3. Releasing 0x8081e00 (new refcount 1). ---request begin--- GET /InBox/FILE3 HTTP/1.0 User-Agent: Wget/1.8.2 Host: filed1 Accept: */* Connection: Keep-Alive Authorization: Basic Znh0ZXN0aW5nOmZ4dGVzdGluZzE= ---request end--- HTTP request sent, awaiting response... HTTP/1.1 200 OK Date: Mon, 13 Oct 2003 12:09:21 GMT Server: Apache/1.3.26 (Unix) mod_ssl/2.8.10 OpenSSL/0.9.6g SecureTransport/4.1.2 Set-Cookie: FDX=P2kjW7IwAjxmm+q9HlG7yA==; path=/ Stored cookie filed1 443 / nonpermanent 0 Wed Dec 31 18:59:59 1969 FDX P2kjW7IwAjxmm+q9HlG7yA== Accept-Ranges: bytes Expires: Thu, 01 Jan 1970 00:00:00 GMT Features: CHPWD;RTCK;STCK;ASC Connection: close Content-Type: text/plain; charset=UTF-8 Length: unspecified [text/plain] [ <=> ] 34 33.20K/s Closing fd 3 08:05:05 (33.20 KB/s) - `FILE3' saved [34] # cat FILE3 Virtual user blah logged in. so the contents of FILE3 are the server replies, not the actual FILE3 on the server. Is this a httpd server issue or ...
