Website Forms Authentication -> Sql Server Windows Authentication - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:33:17Zhttp://stackoverflow.com/feeds/question/782197http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/782197/website-forms-authentication-sql-server-windows-authentication0Website Forms Authentication -> Sql Server Windows AuthenticationDale2009-04-23T15:15:47Z2009-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#7822411Answer by Chris Lively for Website Forms Authentication -> Sql Server Windows AuthenticationChris Lively2009-04-23T15:24:10Z2009-04-23T15:25:41Z<p>The connection string should look something like:</p>
<p>< add name="MyConnectionString" connectionString="Data Source=THESQLSERVER;Initial Catalog=TheDatabase;Persist Security Info=True; <strong>Integrated Security=True</strong>;Application Name=CRM.Sales" providerName=""/></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>