On 9/26/07, Pieter Vanmeerbeek <[EMAIL PROTECTED]> wrote:

> Header edit WWW-Authenticate: ^NTLM dummy
>
>
> Unfortunatly doing this results in removal of all WWW-Authenticate headers
> except for the Negotiate instead of modification of the headers.
> Headers sent to client :
> WWW-Authenticate: Negotiate
>
>
> Can anyone help me and tell me what I'm doing wrong?

The problem is that, in HTTP, multiple identical headers are
equivalent to a single header with all the values folded together. So
I don't believe there is a way in apache to target just one of the
headers. Why don't you instead try something like

SetEnvIf WWW-Authenticate NTLM gotntlm=yes
Header set WWW-Authenticate Basic realm="x.x.x.x" env=gotntlm

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to