Reputation: 1053
How do I implement Integrated windows authentication using ASP.Net kerberos protocol & LDAP in IIS?
Upvotes: 1
Views: 1041
Reputation: 2128
Here's a couple things off the top of my head:
That should get you going. If you have other app pools that are not using Kerberos on IIS, you will probably have to set the identity of your application's app pool with a new user other than the default (whose user needs to be trusted for delegation as well). Then you will have to do a SPN against it and potentially even a new DNS for the site all together. I know it sounds complex but this is what we did to get things up and going...
Upvotes: 4