vote up 0 vote down star

My MVC site is using integrated authentication, and we had a request to allow users to sing in as another user, like in sharepoint.

This has proved to be difficult...
I've tried to send a 401 or 403 response, but the browser won't display the login popup and the user will continue to be loged in. (Fidler and firebug tell me that the response code is received)

How can I clear the credentials for the user, so he/she can provide another user/password?

flag

78% accept rate

3 Answers

vote up 0 vote down

Similar questions have been asked before, e.g. http://stackoverflow.com/questions/1524596/prompt-for-login-details-when-using-integrated-windows-authentication

This one may provide an kludge: redirection to SSL seems to cause a re-AuthN. Maybe you can do something similar? http://stackoverflow.com/questions/1596329/integrated-windows-authentication-ssl

link|flag
vote up 0 vote down

According to this the way to go is implementing forms authentication, check the provided credentials against AD, and then impersonate.

I'm still looking for a way to do it without implementing forms auth...

link|flag
vote up 0 vote down

FormsAuthentication.SignOut();

Hm, that's about forms authentication but I'm not sure it's what you use; but anyway.

link|flag
nop, Integrated Authentication = Windows Authentication – David Lay Nov 6 at 21:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.