cURL / Mailing Lists / curl-users / Single Mail

curl-users

Re: NTLM Authentication on Windows not work

From: Daniel Stenberg <daniel_at_haxx.se>
Date: Fri, 2 Sep 2011 23:28:51 +0200 (CEST)

On Thu, 1 Sep 2011, Stefan.Joss_at_t-online.de wrote:

> curl -k -D --ntlm --user xxx:xxx --trace-ascii tmp.txt https://...

The -D option takes a file name. You gave it the file name "--ntlm" so it was
not treated as the option --ntlm... Try this:

   curl -k -D headers.txt --ntlm --user xxx:xxx --trace-ascii tmp.txt [URL]...

-- 
  / daniel.haxx.se
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ:        http://curl.haxx.se/docs/faq.html
Etiquette:  http://curl.haxx.se/mail/etiquette.html
Received on 2011-09-03