1

I'm developing an ASP.NET application that requires to run with windows user credential. In my developing environment I use IIS Express 8.0, so the application run by default with user credential, while in production environment I use IIS 7.5, and application run as "IIS APPPOOL\DefaultAppPool". In IIS manager -> Application Pools I can change identity to "LocalService", "LocalSystem" or "NetworkService", but I can't find something like "Windows user credential". Defaul Web Site Authentication is already set as "Windows authentication", but it is my understanding that this only avoid external user to connect. Am I missing something?

Naigel
  • 9,086
  • 16
  • 65
  • 106
  • found a solution: In IIS Manager, in SiteName -> Authentication, "ASP.NET Impersonation" and "Windows Authentication" was correctly enabled, but I was missing a setting in Web.config asp file. `` in `` wasn't enough (as it was in IIS6), but I also needed to add ` ` – Naigel Oct 28 '13 at 14:19

1 Answers1

0

As i undestand you need to configure impersonation. Please follow this link for instruction.

Yevgeniy.Chernobrivets
  • 3,194
  • 2
  • 12
  • 14