Top "Security-roles" questions

How to dynamically decide <intercept-url> access attribute value in Spring Security?

In Spring Security we use the intercept-url tag to define the access for URLs as below: <intercept-url pattern="/**" access="…

spring-security authorization security-roles
CakePHP ACL Database Setup: ARO / ACO structure?

I'm struggling to implement ACL in CakePHP. After reading the documentation in the cake manual as well as several other …

php cakephp permissions acl security-roles
What is the difference between ROLE_USER and ROLE_ANONYMOUS in a Spring intercept url configuration?

What is the difference between ROLE_USER and ROLE_ANONYMOUS in a Spring intercept url configuration such as the example …

java authentication spring-security security-roles
Why do I list security roles in web.xml when they're in jdbcRealm database?

I run JavaEE 6 web application on Glassfish 3. I use JAAS with jdbcRealm and default principal to role mapping. In my …

java jakarta-ee jaas security-roles
Spring Security Role Prefix and Custom User Details Service

How do I set the role prefix to "" with a custom user details service in Spring? <beans:bean id="…

spring-security roles security-roles
LDAP authorization

I'm starting to implement authorization and authentication mechanism using LDAP, for some existing system. On the development stage, I'm facing …

authentication ldap authorization roles security-roles
asp.net MVC role based access to controller

A lot of articles online on role based access speak of applying something like this to ensure role based access …

c# asp.net-mvc-3 forms-authentication security-roles
AuthorizeAttribute with Roles but not hard-coding the Role values

Is it possible to add the Roles but not hard-coding the values like: [Authorize(Roles="members, admin")] I would like …

asp.net-mvc-3 authorization security-roles
How do I access JAAS roles at arbitrary point in the code?

I want to access the full model of users with their roles in my SOAP app. For example, I might …

java security jaas role security-roles