Website Forms Authentication -> Sql Server Windows Authentication - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:33:17Z http://stackoverflow.com/feeds/question/782197 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/782197/website-forms-authentication-sql-server-windows-authentication 0 Website Forms Authentication -> Sql Server Windows Authentication Dale 2009-04-23T15:15:47Z 2009-04-23T15:28:23Z <p>To cut a long story short: As part of an online database access system I'm writing I want to use the new BLOB access features in SQL 2008 - this means I have to use Windows Authentication when logging into the SQL Server; however due to it's very nature the website front end to all this uses Forms authentication with the membership data stored on that SQL server.</p> <p>How do I get the web application to impersonate a user account so it can connect to the SQL server, i.e. I don't want to use the account of a user logged into the website. (Not that you could do this as the membership details are stored on the SQL server)</p> <p>The webserver and the SQL server are on different machines on the same network, there is a user account set up just for the web application to use.</p> http://stackoverflow.com/questions/782197/website-forms-authentication-sql-server-windows-authentication/782241#782241 1 Answer by Chris Lively for Website Forms Authentication -> Sql Server Windows Authentication Chris Lively 2009-04-23T15:24:10Z 2009-04-23T15:25:41Z <p>The connection string should look something like:</p> <p>&lt; add name="MyConnectionString" connectionString="Data Source=THESQLSERVER;Initial Catalog=TheDatabase;Persist Security Info=True; <strong>Integrated Security=True</strong>;Application Name=CRM.Sales" providerName=""/&gt;</p> <p>Where you use Integrated Security. Then your application pool should use an identity that has access to your sql server.</p> <p>You would grant rights to that identity. </p>