vote up 0 vote down star

I've got a Web Setup project installing a web app. In a Custom Action, I'm executing a SQL script to build a database.

Simple, mostly MS sample code. Works fine.

private void ExecuteSql(string serverName, string dbName, string Sql)
{
    System.Data.SqlClient.SqlConnection masterConnection = new System.Data.SqlClient.SqlConnection();
    masterConnection.ConnectionString = "Server=" + serverName + "; Database=" + dbName + ";Integrated Security=SSPI";

    System.Data.SqlClient.SqlCommand Command = new System.Data.SqlClient.SqlCommand(Sql, masterConnection);
    Command.Connection.Open();
    Command.Connection.ChangeDatabase(dbName);
    try
    {
        Command.ExecuteNonQuery();
    }
    finally
    {
        Command.Connection.Close();
    }
}

The problem is that the user that is being sent over to the SQL Server is "DOMAIN\MACHINENAME$", like "AMBER\CHAOS$" rather than "AMBER\corwin".

If I add "AMBER\CHAOS$" as a login on the SQL Server and give the user sufficient rights, everything works fine. That's not possible in the final environment.

So, what do I need to do to make my web setup connect to SQL server as "AMBER\corwin" rather than "AMBER\CHAOS$"?

flag

5 Answers

vote up 0 vote down

This is probably because your web site's application pool is running as Network Service instead of a windows user. Change this value to the account you want to connect to the database as (watch you application, this could change your app depending on the architecture) and add rights in SQL.

link|flag
vote up 0 vote down

You have to tell the custom action to impersonate the user. How are you creating the MSI? With WiX, you would add: Impersonate="yes" to the element.

link|flag
vote up 0 vote down

Probably that's your website application pool username; Try add into your web.config file, inside /configuration/system.web:

<identity impersonate="true"/>

link|flag
The web.config does contain the Windows Authentication stuff, with impersonate set to true. That all works fine once the application is installed. It's during the web-setup itself that I'm having this particular problem. – chazlarson Oct 6 at 18:55
please check this: blogs.msdn.com/astebner/archive/… – Rubens Farias Oct 6 at 19:19
vote up 0 vote down

You might try to mess around in the *.config file. You could try using these elements:

<system.web>   
  <authentication mode="Windows" />   
  <identity impersonate="true" /> 
</system.web>
link|flag
vote up 0 vote down

Simply take your connection string and make it:

masterConnection.ConnectionString = "Server=" + serverName + "; Database=" + dbName + ";Integrated Security=SSPI;UserId=" + userId + ";Password=" + password + ";";

link|flag

Your Answer

Get an OpenID
or

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