01-14-06 03:26 AM
Only insecure protocols like Basic authentication will give you that
behavior.
Secure protocols never pass the user's password to the server, so you can
never "look it up" nor implicitly delegate from that server to another
server.
I suggest you use secure protocols and mechanisms to delegate credentials,
such as with Protocol Transitioning and Constrained Delegation in Windows
Server 2003. Everything else is pretty much insecure unless it does
something similar.
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"RaziLevin" <RaziLevin@discussions.microsoft.com> wrote in message
news:D6F36A1A-FBD6-42B9-BBF6-AA87DF43C771@microsoft.com...
> Hello,
>
> I was wondering how I could implement pass through authentication. What I
> need is to be able to programmatically retrieve a users password so that I
> may pass that information along to another website.
> Request.ServerVariables("REMOTE_USER") will give me the username how can I
> get the password in ASP. If any more information is needed I will provide
> it.
>
> Razi
>
[ Post a follow-up to this message ]
|