Click here to Skip to main content
15,883,843 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I have authenticated my application using my credentials in IIS7 and I don't want to enter the login credentials in sql server and I want my application to perform windows authentication how to do it
Posted
Comments

1 solution

If you want to run you application in the name of the logged-in user you need to set up several things:
- set up your application pool and other iis and application related setting properly (see here: http://stackoverflow.com/questions/12966286/impersonate-domain-user-with-integrated-pipeline[^])
- configure properly the access rights to the users in scope to all necessary resources on all affected servers
- since you will use delegation, you will need a fully functional Kerberos (without fallback to NTLM in your affected infrastructure elements)
Further reading: http://www.adopenstatic.com/cs/blogs/ken/archive/2007/01/28/1282.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900