Minoucha
Minoucha

Reputation: 11

ASP.NET MVC 3 application with AD environnement

I'm developping an application with ASP.NET MVC3 and I have to give an access to client to see some files, this files are in local server and change permanantly We are working in active directory environement I need to have an Idea how to give this acces in secure manner. Do I need to create a user in read only and authenticate him from the app I need to imagine the scenario and how make it work Some Ideas please

Upvotes: 1

Views: 100

Answers (1)

Yan Brunet
Yan Brunet

Reputation: 4897

Since your are using Active directory you could hookup your application with Windows Authentication.

Then you could set IIS to use impersonation and apply group policies to the folder you want the application to acces.

Here is a nice tutorial from Microsoft.

Upvotes: 1

Related Questions