vote up 0 vote down star
2

Hi,

We are developing an intranet web application on .NET 2.0 platform. The application is using Integrated Windows Authentication for Single Sign On. The users are authorized to use diffent modules according to the Active Directory Groups they are in.

Up to the point where authentication and authorization is accomplished everything works fine. But the problem starts when application tries to connect to the database on MSSQL Server.

According to the security policies of our customer, no database user or password data should be kept in connection strings or in registry even if encrypted. So we are forced to use Integrated Security=SSPI in the connection string.

The Application Pool on IIS is configured by them with the Identity User who has access to the database.

When we deactivate Windows Integrated Authentication, we connect to the db with the Application Pool's Identity User. But when Integrated Authentication is on, the application is trying to connect to the database with logon user credentials.

We tried every combination of Integrated Authentication, with or without impersonation, to solve the problem.

Is there any way to solve this conflict?

flag

71% accept rate

1 Answer

vote up 1 vote down check

Normally the way you are doing it should work. Do you have Kerberos with delegation enabled?

Maybe this helps:

Edit: if both SQL and IIS are on the same machine you need to turn off impersonate:

  • <authentication mode="Windows" />
  • <identity impersonate="false" />
link|flag
No, Kerberos doesn't enabled. I will try Kerberos, thanks for quick reply. – mrt Mar 28 at 10:13
Well actually I was wondering if Kerberos is making the problems. Is your SQL Server then on the same machine as IIS? – chris Mar 28 at 10:15
No, SQL Server and IIS are on different machines, but on the same domain. – mrt Mar 28 at 10:31
That's strange since Windows can't delegate identity across the network without Kerberos. Still, try <identity impersonate="false" /> – chris Mar 28 at 10:54
when impersonation is <identity impersonate="false" /> db connection ok but i can not get logon user identity – mrt Mar 28 at 11:19
show 3 more comments

Your Answer

Get an OpenID
or

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