vote up 0 vote down star

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.

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)

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.

flag

50% accept rate

1 Answer

vote up 1 vote down check

The connection string should look something like:

< add name="MyConnectionString" connectionString="Data Source=THESQLSERVER;Initial Catalog=TheDatabase;Persist Security Info=True; Integrated Security=True;Application Name=CRM.Sales" providerName=""/>

Where you use Integrated Security. Then your application pool should use an identity that has access to your sql server.

You would grant rights to that identity.

link|flag
My connection string is set up correctly; I don' have administration rights on our web server's IIS, is that where the application pool identity needs to be set? – Dale Apr 23 at 15:28
1  
Yes, it is. However, you don't need to change the account in IIS - just check which account is already being used, and give that account access rights to your SQL Server and databases. – Tomas Lycken Apr 23 at 15:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.