T
teejayem
Hi.
I have an ASP.NET website. My IIS is set to use Windows NT
Authentication.
I have configured my ASP website to use impersonation using the
following tag:-
<identity impersonate="true" />
Now I understand that the code that runs on the server should now run
as the NT user that has authenticated against my IIS. This doesn't
seem to be the case as I have tested this with users who are members
of the Domain Admins group and the website displays errors which is
being caused by permissions.
When I explicitly define the user name and password of an
administrative account it works fine.
<identity impersonate="true" userName="WALKER_MORRIS\user"
password="" ></identity>
Any ideas? As I would rather not have a domain admin account user
details written in plain text.
I have an ASP.NET website. My IIS is set to use Windows NT
Authentication.
I have configured my ASP website to use impersonation using the
following tag:-
<identity impersonate="true" />
Now I understand that the code that runs on the server should now run
as the NT user that has authenticated against my IIS. This doesn't
seem to be the case as I have tested this with users who are members
of the Domain Admins group and the website displays errors which is
being caused by permissions.
When I explicitly define the user name and password of an
administrative account it works fine.
<identity impersonate="true" userName="WALKER_MORRIS\user"
password="" ></identity>
Any ideas? As I would rather not have a domain admin account user
details written in plain text.