Windows authentication problems using asp.net - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T22:39:51Zhttp://stackoverflow.com/feeds/question/190961http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net3Windows authentication problems using asp.netScarecrow2008-10-10T11:56:39Z2009-02-26T06:10:14Z
<p>I have an asp.net application that should access data from two SQL Servers. One of the SQL Servers is present on the same machine as IIS (let us call it SQLSERVER1) whereas the other SQL server is present on another machine (SQLSERVER2).</p>
<p>The connection strings are trusted for both the SQL servers. Impersonation has been set to true in my web.config file. I am using Windows authentication in both IIS and web.config.</p>
<p>When I try to access data from SQLSERVER2, I get login failed for user(null) error. The user through which I have logged in through Windows exists as a SQL server account in SQLSERVER2.</p>
<p>What could be the possible reason? </p>
<p><strong>NOTE:</strong> <strong>This is a newbie question IMHO</strong>. </p>
<p><strong>NOTE: The IIS used is 6.0 (Windows 2003). It is not set to IIS 5.0 isolation mode.</strong></p>
<p><strong>EDIT:The user getting impersonated is a domain user</strong></p>
<p><strong>Addition:</strong> </p>
<p><strong>I also want to state that I get this error message when I access it as a client of the server where IIS is running. In other words, let me say I am working on machine A, the IIS and SQLSERVER1 are on machine B, and SQLSERVER2 is on machine C.</strong></p>
<p><strong>I do not get this error message when I am working on machine B. This is stumping me more.</strong></p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/190997#1909973Answer by Jonathan for Windows authentication problems using asp.netJonathan2008-10-10T12:13:37Z2008-10-10T12:13:37Z<p>You're probably running into this problem because non-Kerberos based impersonation (NTLM) is only valid on the local machine (the webserver). If you want to be able to use those credentials to access another machine, you're going to need to make sure you're using Kerberos.</p>
<p>Try this: <a href="http://support.microsoft.com/kb/810572" rel="nofollow">http://support.microsoft.com/kb/810572</a></p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/191047#1910470Answer by Steven Murawski for Windows authentication problems using asp.netSteven Murawski2008-10-10T12:35:01Z2008-10-10T12:35:01Z<p>Your authentication to the webserver is not passed through to the sql server. The web server is authenticating to the SQL Server using the account that your application pool is running under.</p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/191119#1911190Answer by AnthonyWJones for Windows authentication problems using asp.netAnthonyWJones2008-10-10T12:54:35Z2008-10-10T12:54:35Z<p>You should check that the machine account for SQLSERVER1 has trusted for delegation enabled. Otherwise SQLSERVER2 won't trust the impersonation running on SQLSERVER1. This is in addition to confirming that Kerberos is used to set up the impersonation in the first place. This also assumes that the servers and the users are all members of the same domain.</p>
<p>BTW, are sure you want to do things this way, you end up creating a lot more connections because they end up being unique to a user?</p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/191167#1911676Answer by Yadyn for Windows authentication problems using asp.netYadyn2008-10-10T13:06:20Z2008-10-10T13:06:20Z<p>This is absolutely a <strong>delegation</strong> problem. As one person pointed out, you need to make sure <a href="http://en.wikipedia.org/wiki/Kerberos_(protocol)" rel="nofollow">Kereberos</a> authentication is being used. The old style <a href="http://en.wikipedia.org/wiki/NTLM" rel="nofollow">NTLM</a> isn't going to cut it. Here's more on <a href="http://blogs.msdn.com/sql_protocols/archive/2006/12/02/understanding-kerberos-and-ntlm-authentication-in-sql-server-connections.aspx" rel="nofollow">Kerberos vs. NTLM</a>.</p>
<p>In a nutshell, if you have a webserver and a database and you want the webserver to impersonate the user when making database requests (so that you can set up permissions on the database directly on a per-user or user-group basis) you're performing a double-hop. Credentials must past first from the user's computer to the webserver and again to the database. As you can imagine, the database has to trust the webserver to "do no evil" or this could be an extremely dangerous security hole. As a result, you have to set up what is called in the Windows Server world <strong>"delegation"</strong>...</p>
<p>Microsoft has a good article about all this <a href="http://msdn.microsoft.com/en-us/magazine/cc163740.aspx" rel="nofollow">here</a>. Further, you can look over an article like <a href="http://www.databasejournal.com/features/mssql/article.php/3696506" rel="nofollow">this</a> to get an idea of how to set it all up. We've run into this frequently, and it can be a pain at first, especially since as a developer you're probably not in control of the servers directly (especially production ones) and you'll have to spend a lot of time with the server guys down the hall.</p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/191210#1912100Answer by jimoc for Windows authentication problems using asp.netjimoc2008-10-10T13:16:51Z2008-10-10T13:16:51Z<p>Have you tried to access the database on server2 using SQL SErver administrator from Server1 and made a successful connection?</p>
<p>If not then this could be because by default SQL Server installs itself with tcp turned off by default.</p>
<p>You will need to make sure that this is turned on for server2 to allow server1 to connect.
server1 has no problems connecting due to the fact it can use the shared memory connection.</p>
http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/589317#5893170Answer by vijay for Windows authentication problems using asp.netvijay2009-02-26T06:10:14Z2009-02-26T06:10:14Z<p>Dear Bloggers</p>
<p>Error while trying to run project: Unable to start debugging on the web server. Debugging failed because integrated Windows authentication </p>
<p>Please give me a proper solution if someone have</p>
<p>Vijay Kumar</p>