Access Control Lists & Access Control Objects, good tutorial? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T11:24:29Zhttp://stackoverflow.com/feeds/question/12612http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/12612/access-control-lists-access-control-objects-good-tutorial1Access Control Lists & Access Control Objects, good tutorial?Tilendor2008-08-15T19:11:31Z2008-10-11T00:14:35Z
<p>Hi, we're developing a web app to cover all aspects of a printing company from finances, to payroll, to job costing. Its important to be able to control who can access what parts of these applications. Don't want a line employee giving himself a raise, etc...</p>
<p>I've heard of the concept of ACL & ACO, but haven't found a good example that we could adapt to our project.</p>
<p>Anyone know where I can find good information to work from?</p>
http://stackoverflow.com/questions/12612/access-control-lists-access-control-objects-good-tutorial/12619#126191Answer by Jay Mooney for Access Control Lists & Access Control Objects, good tutorial?Jay Mooney2008-08-15T19:19:07Z2008-08-15T19:27:47Z<p>I've had to implement that type of security a couple of times. Unfortunately I don't know of any really good articles that provide examples. My implementations were mainly piecing together the parts through trial and error.</p>
<p>However, I did come across this link on MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/52kd59t0" rel="nofollow">http://msdn.microsoft.com/en-us/library/52kd59t0</a>(VS.71).aspx</p>
<p>It has some of the concepts.</p>
<p><hr /></p>
<p>After my original post, I did some more research. I found this article:</p>
<p><a href="http://www.aspfree.com/c/a/C-Sharp/Implementing-Role-Based-Security-using-CSharp/" rel="nofollow">http://www.aspfree.com/c/a/C-Sharp/Implementing-Role-Based-Security-using-CSharp/</a></p>
<p>it seems pretty promising, I didn't go through all the details, but it at least guides you through the high-level topics.</p>
http://stackoverflow.com/questions/12612/access-control-lists-access-control-objects-good-tutorial/12697#126971Answer by Manga Lee for Access Control Lists & Access Control Objects, good tutorial?Manga Lee2008-08-15T20:24:03Z2008-08-15T20:33:57Z<p>If you're using .NET/Windows you might want to look into Windows Authorization Manager (AzMan). There are support for AzMan in Enterprise Library but there are other ways of using it as well.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms998336.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms998336.aspx</a>
<a href="http://alt.pluralsight.com/wiki/default.aspx/Keith.GuideBook/WhatIsAuthorizationManager.html" rel="nofollow">http://alt.pluralsight.com/wiki/default.aspx/Keith.GuideBook/WhatIsAuthorizationManager.html</a></p>
http://stackoverflow.com/questions/12612/access-control-lists-access-control-objects-good-tutorial/12707#127071Answer by Pascal for Access Control Lists & Access Control Objects, good tutorial?Pascal2008-08-15T20:31:23Z2008-08-15T20:31:23Z<p>A brief rundown on ACLs, where they should be used and how they should be structured and implemented for various applications and user levels can be found here:</p>
<p><a href="http://c2.com/cgi/wiki?AccessControlList" rel="nofollow">LINK</a></p>