User.Identity.Name is not returning the correct credentials when using Windows Authentication in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:53:39Z http://stackoverflow.com/feeds/question/775887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/775887/user-identity-name-is-not-returning-the-correct-credentials-when-using-windows-au 0 User.Identity.Name is not returning the correct credentials when using Windows Authentication in ASP.NET MVC mig 2009-04-22T05:59:40Z 2009-04-23T04:56:14Z <p>I am using Windows Authentication in my ASP.NET MVC application and I am prompted to enter credentials on my webserver which is a domain member [I have domain credentials and can authenticate fine] however when my controller action calls "User.Identity.Name" in an attempt to check a database value against the currently logged in user this is returning the SAM Account from the local machine and NOT the SAM account from the DOMAIN: </p> <p>Local machine user name (which User.Identity.Name returns): LOCALPC\username</p> <p>What I am expecting (which is what I am authenticating against AD as): DOMAIN\username</p> <p>This causes me problems because I cannot accurately verify a user using only the username.</p> <p>Am I missing something, is there a way to return what I am currently authenticated as to the webserver as opposed to what the local SAM account is on the client machine?</p> <p>The reason this is important is because not all the intranet application clients will be domain joined (machines that aren't domain joined but belong to users with AD accounts).</p> http://stackoverflow.com/questions/775887/user-identity-name-is-not-returning-the-correct-credentials-when-using-windows-au/775909#775909 0 Answer by chris for User.Identity.Name is not returning the correct credentials when using Windows Authentication in ASP.NET MVC chris 2009-04-22T06:16:20Z 2009-04-22T06:50:18Z <p>When prompted in your web browser enter "DOMAIN\username" instead of just "username" for the authentication.</p> <p>EDIT:</p> <p>Is this a development server? Check the account that IIS is running on. Did you configure impersonation in web.config?</p> http://stackoverflow.com/questions/775887/user-identity-name-is-not-returning-the-correct-credentials-when-using-windows-au/775985#775985 1 Answer by mig for User.Identity.Name is not returning the correct credentials when using Windows Authentication in ASP.NET MVC mig 2009-04-22T06:55:08Z 2009-04-23T04:56:14Z <p>My mistake, the issue is fixed now, it turned out to be an error in my code and the fact that my machine is not domain joined that was leading me to believe the issue was with the value of User.Identity.Name.</p> <p>Thanks all for suggestions, hopefully my next contribution to the site will be on a less foolish note.</p> <p>--</p> <p>By the way - this link might help people looking for related information on authentication in IIS: <a href="http://blog.mike-obrien.net/PermaLink,guid,5e975b20-7b05-472f-bd80-04028ab8b6fa.aspx" rel="nofollow">http://blog.mike-obrien.net/PermaLink,guid,5e975b20-7b05-472f-bd80-04028ab8b6fa.aspx</a></p>