How can be the web application get configured with the following authorization rules ...

Q

How can be the web application get configured with the following authorization rules ...

✍: Guest

A

How can be the web application get configured with the following authorization rules
* Anonymous users must not be allowed to access the application.
* All persons except David and John must be allowed to access the application.
o <authorization><allow roles ="*"><deny roles = "?"><</authorization>
o <authorization><deny users = "applicationname\David; applicationname\John" ><deny users = "*"></authorization>
o <authorization><deny users = "applicationname\David, applicationname\John" ><deny users = "?"><allow users ="*"></authorization>
o <authorization><allow users ="*"><deny users = "applicationname\David, applicationname\John" ></authorization>


authorization deny users = “applicationname\David, applicationname\John” deny users = “?” allow users =”*” /authorization

2014-08-29, 1621👍, 0💬