How to authenticate users on one site and pass credentials to other site? ( Windows Authentication, ASP.Net) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:45:52Z http://stackoverflow.com/feeds/question/404978 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/404978/how-to-authenticate-users-on-one-site-and-pass-credentials-to-other-site-windo 2 How to authenticate users on one site and pass credentials to other site? ( Windows Authentication, ASP.Net) SharePoint Newbie 2009-01-01T14:08:17Z 2009-01-02T22:41:40Z <p>Hi, We have multiple web-applications running Windows authentication.<br />Users log on to the websites using Domain\Username which is different from the DomainOther\UsernameOther that they use on their local computers.<br /> Considering we have 2 sites One.xyz.com and Two.xyz.com both running Windows Authentication (and user logs in to both using Domain\Username), is it possible to have theuser redirect from a page on One.xyz.com to the homepage of Two.xyz.com without entering his credentials again once he has already entered them on One.xyz.com?<br /> Is it possible to do this using ASP.Net?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/404978/how-to-authenticate-users-on-one-site-and-pass-credentials-to-other-site-windo/404990#404990 0 Answer by David G for How to authenticate users on one site and pass credentials to other site? ( Windows Authentication, ASP.Net) David G 2009-01-01T14:21:07Z 2009-01-02T22:41:40Z <p>SharePoint supports <a href="http://en.wikipedia.org/wiki/SPNEGO" rel="nofollow">SPNEGO</a> authentication, a form of single sign-on. MSDN has documentation for using SPNEGO for single-sign on .net. Look at the Microsoft Security SSPI. I found <a href="http://msdn.microsoft.com/en-us/library/ms973911.aspx" rel="nofollow">this sample</a> with a quick search.</p> <p>SPNEGO is a Microsoft variation of <a href="http://en.wikipedia.org/wiki/Kerberos_(protocol)" rel="nofollow">Kerberos</a> and it will interoperate with IBM products and Oracle WebLogic, as well.</p> <p>If you want single-sign using an international standard that has wider interoperability than Kerberos, you should use <a href="http://en.wikipedia.org/wiki/SAML" rel="nofollow">SAML</a>. See <a href="http://msdn.microsoft.com/en-us/magazine/cc163520.aspx" rel="nofollow">Active Directory Fedration</a> for a Microsoft discussion of SAML. However, SAML is much more complicated to implement and configure.</p> http://stackoverflow.com/questions/404978/how-to-authenticate-users-on-one-site-and-pass-credentials-to-other-site-windo/405051#405051 1 Answer by Mark Brittingham for How to authenticate users on one site and pass credentials to other site? ( Windows Authentication, ASP.Net) Mark Brittingham 2009-01-01T15:23:39Z 2009-01-01T15:23:39Z <p>What you are looking for is called Single Sign-On and there are a broad variety of commercial products capable of supporting your needs. Many of them pass credentials via server variables over HTTPS so that the users doesn't see the credentials in the URL. I've worked with companies that wanted to "roll their own" and who went for other approaches (session keys that reference a third server, encrypted and time-sensitive URL strings, etc.).</p> <p>To get started, you'll want to read the <a href="http://en.wikipedia.org/wiki/Single_sign-on" rel="nofollow">Wikipedia entry</a> on single sign-on (it links with SAML as well). You may want to visit some of the more popular commercial vendors' websites such as <a href="http://www.passlogix.com/index.php/products/v-GO_singlesignon" rel="nofollow">Passlogix</a> and <a href="http://www.imprivata.com/" rel="nofollow">Imprivata</a> as well (there are dozens, though, so don't take this list as exhaustive or even particularly recommended - just popular).</p>