ASP Website Permissions  
Author Message
losal08





PostPosted: ASMX Web Services and XML Serialization, ASP Website Permissions Top

Hello,

I am putting together an ASP website and would like to run it using a limited account. Currently, the main thing this page is doing is querying the local machine and verifying that a service is running. However, the only way I can find to successfully run the script is by using an Admin account. Is there any way to specify which account type to use or how to run it with limited permissions with IIS The permissions would be specific to this page only.


.NET Development3  
 
 
Adamus Turner





PostPosted: ASMX Web Services and XML Serialization, ASP Website Permissions Top

You can impersonate the admin account in the web.config file:


<identity impersonate="true" userName="domain\MyAppUser" password="password"/>

Adamus