ASP.NET impersonate problem
Hi,
For an ASPX application, I enable impersonation by adding the line
<identity impersonate="true" />
to the web.config file. At the same time, I also enable Anonymous access and Windows Integrated security in IIS.
With this combination, which ID will be used for resource access?
Current User Login ID or anonymous access ID?
Thx!
Re: ASP.NET impersonate problem
Re: ASP.NET impersonate problem
Hi,
It seems that it is not the case.
In my environment, the ID used is the impersonated login ID. It is because the aspx will in turn call a COM+ component, and I just assign user ID to Roles on that component, but not the anonymous user ID!!!
Pls advise!