up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

71% accept rate
feedback

3 Answers

FormsAuthentication.SignOut();

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

link|improve this answer
nop, Integrated Authentication = Windows Authentication – David Lay Nov 6 '09 at 21:00
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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