Hi,
We have sepeartate folder called Managers in one of our web apps.
And there was a security build around that folder in a web config file
as below
<?xml version="1.0"?>
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<authorization>
<allow roles="AllManagers"/>
<deny users="*"/>
</authorization>
</system.web>
</configuration>
I couldn't figure out where this group located in the application.
Usually all our groups are defined in Active directory but except this
group. I am not sure if this is defined on the web server or some
where in the app itself. Because in the process of figuring out I have
changed it to <allow users="*"/> just to make sure if this is the
group we are looking for and YES It is and I have access to it. So I
need to find out where this is located and add myself as one of the
users to this group.
Can any one help me with this mystery.
Thanks in advance,
L