In various access control systems, roles define a group of users and organize permissions into a more manageable structure.

learn more… | top users | synonyms

0
votes
2answers
19 views

Sugar CRM, Create a role only to view, update but not create a record

I have few agents who will be working on some leads. Here, I want them to view the record, update them with the info they got over the call but not create a new record. I tried everything.I disabled ...
0
votes
0answers
38 views

why in mvc 4 delete user from role not take effect immediately?

i have mvc4 project that I configured custom membership and custom role provider I'm in testing process I noticed that when I delete or add user from to role the effect of change role not ...
0
votes
0answers
15 views

Wordpress post views by user

I'm working on a Wordpress site for a client and need to be able to track which users viewed a specific post. Then I need to track if that user has viewed the post since it was last edited. After ...
0
votes
1answer
30 views

c# MVC: How to update user roles?

I have a viewmodel which exposes a few public virtual ICollection Roles { get; set; } This is great for bringing back what roles a user belongs to.. But how do I update the roles of a user from ...
0
votes
0answers
35 views

“FATAL: database does not exist” on postres, login is not working through app

I have these three steps bellow which I am executing every moment that I need to create a new environment for my app, the step 3 is just part of code... On the first step I create the database, ...
0
votes
0answers
12 views

Unwanted roles cache in winforms app using asp .net users managment

I'm using asp .net membership and roles in a website. Users and roles management is being done through this website. Now I need winforms application to use authentication and role based ...
2
votes
2answers
41 views

Struts 2 access request.isUserInRole

I'm developing a small Java EE application using Struts 2 and Rest Services over a JBoss AS7 server. I'm using FORM auth for REST and Web content, and I don't have any problem with REST, but on the ...
0
votes
0answers
27 views

Using global variables in Puppet with roles/profiles without overriding in node-definition

I'm currently building a new puppet repository with Craig Dunn's roles/profiles paradigm and ran into a (foreseeable) problem trying to reduce node definitions to only include their role. I'm working ...
0
votes
1answer
22 views

How to develop ASP.NET webpages with content varying with roles?

I have an ASP.NET website for which I want to filter content based upon user Roles. Say, for a "Manager" certain section displays and for an "Operations" guy, some other section is visible. I don't ...
0
votes
1answer
36 views

Symfony 2 : Redirect a user to a page if he has a specific role

I have a little question. I want that wherever is the user on my website, if he have the role "ROLE_DEGRADE", he is redirected on a specific page. How I can do that, I have to use firewall ? I don't ...
0
votes
0answers
28 views

yii CAuthManager get child and inherited roles

I am using yii and uses its CAuthManager to manage authorization. In my program I want to get the child roles and the child roles of the child role itself. Basically I want to get all the inherited ...
0
votes
1answer
28 views

JasperReports Server report permissions/roles

We have a collection of reports on our JasperReports Server right now, most of which have input controls. I recently implemented Roles, adding a specific role for the users of these reports (with the ...
0
votes
0answers
7 views

How to translate role in Drupal?

If I want to translate the role to other language, how do I do it? I can change that to other language as the default but I would like to use English so I don't have to deal with UTF8 issue in my ...
-2
votes
0answers
23 views

How to get all roles from Table1?

I would like to get all roles from Table1 (i.e., 1roles, 2roles, 3roles, 4roles......), how to implement this function? public static string MyRoles() { if (MyUserRoles.IsRoles("1roles")) { ...
3
votes
3answers
54 views

Securing SQL Server database from Domain Admin

I have inherited a SQL Server box with a series of databases and it has Windows Auth for creation/maintaining the well-baked and established databases. The box itself has many other services which ...
0
votes
0answers
14 views

Object reference not set to an instance of an object. while assigning List of dynamic object to session

I am getting this error Object reference not set to an instance of an object. when I try to assign a dynamic list object. Dynamic list object means, a single class object having multiple values of ...
0
votes
0answers
28 views

Few registration forms for different roles mvc3

I'm trying to make few forms to register different user roles (Doctor,Patient,Nurse,Admin) because of different attributes. Users will be in different tables and I want to make one login form its ...
-1
votes
0answers
25 views

Unable to create Roles in ASP.NET

I am trying to create roles in an asp.net project. I have Used MS SQL server mgt. as database and configured it for Login controls using aspnet_regsql.exe file & also used <membership> tag ...
0
votes
0answers
13 views

WCF and forms authentication

I have a Restful WCF webservice. I want to lock it down with Forms Authentication and specify what roles the user needs to be in the call the web method. Cheers, Chris.
0
votes
0answers
46 views

Find employee's ID in a database by his/her login information. Bind employee ID to a role

The question about narrowing sql query results to the certain employee's team using his ID. MS SQL Server 2005 database. I have these requirements: Users should be able to see the certain employees, ...
0
votes
1answer
74 views

Getting the user Role

I have the Entities User (implements UserInterface which has a many to many relation to the Entity Role (implements RoleInterface). My Project needs the ROLE_ADMIN after Login, otherwise it will ...
0
votes
1answer
34 views

Different menu Items for different roles

I have a custom Login Page where i authenticate users from DB. In return i get if the user is authenticated and also if the Role of the User. e.g., User belongs to Role X, Role Y or Role Z I wanted ...
1
vote
0answers
29 views

How to represent ASP.NET controls differently for different roles according to best practices

On our project we use ASP.NET Web Forms, Web Forms MVP. All data are getting from WCF service. All roles are handled by the noted service (e.g. Manager, Finance, etc.). We need to introduce role ...
0
votes
1answer
27 views

SimpleMembershipProvider GetRoleByUserID?

What is the best way to get user role(s) by user ID? There arent straight way to it? System.Web.Security.Roles offers straight way to get currently logged in users roles, but i want my admin user to ...
0
votes
1answer
32 views

Role name in association relationship

As i read through UML bible about role Roles:A role name explains how an object participates in the relationship. "Each object needs to hold a reference to the associated object or objects. The ...
0
votes
2answers
27 views

Grails findAllByRole() error

I am trying to send email to all users with admin role when list() action has been called. Inside my list method I put the following code: def admins = User.findAllByRole("ROLE_ADMIN") ...
0
votes
1answer
114 views

role based authorization with window authentication in asp.net

I have to create a role based application in which i have three roles admin,manager and user. In my application i have three different folder in which i have to check those role. What i want is when i ...
0
votes
0answers
42 views

Oracle: Roles, Tables, Privileges as Matrix

In Oracle there is a view called role_tab_privs which details table privileges granted to roles. It has rows like this (not all columns displayed): Table Role Privilege table1 ...
0
votes
1answer
33 views

symfony2: fosuserBundle -> determine roles when registering users

i am starting with symfony2 and fosUserBundle, and I get the following problem: i have 2 kinds of users in my application (let say recruiters and job seekers. The recuiters can post job offers, and ...
0
votes
1answer
36 views

How does one allow a user to only be able to edit only his items in XAF

I have a CompanyUser and Product class Each user can create x amount of products. I only want each user to be able to view each others products, but only to be able to edit their own product. I have ...
0
votes
1answer
77 views

Role based menu in Java EE

I am using Spring MVC for my web application. My views are JSP based. What is the best practice to show role based menus? Should I make a check on the JSP page for a role? Should I build the menu in ...
1
vote
1answer
31 views

How does the web container know about the role of the user

I am very new to web-app development and its security and trying to understand things around. Everywhere I look for implementing security in my webapp they ask to use declarative security. For ...
1
vote
3answers
46 views

Yii Role Based Acces Controle

Question from quite newbie. I generated entity and model, then a CRUD for it using Gii. Default acces rules say that delete action can do just users with admin role. By default we have 2 users defined ...
0
votes
3answers
49 views

Rails - how to find out user's role in the system?

I have following models: class Role < ActiveRecord::Base has_many :assignments has_many :users, :through => :assignments end class Assignment < ActiveRecord::Base belongs_to :user ...
1
vote
1answer
44 views

Sanity check my Rails “Roles and Users” approach with Devise and Cancan

been kicking this one about for a while now, and would like to get someone who knows rails to test my theory (I'm new to Rails). In my (simplified) scenario, I want to manage a list of Users, some of ...
0
votes
1answer
59 views

implementing Access Control Lists vs using database roles and users

First off before you grill me to the floor, i would like to say i have spent considerable amount of time reading and researching this topic. I have read some on stackoverflow itself such as ACL ...
0
votes
1answer
26 views

Displaying a particular web page when user roles don't match the <allow roles> tag in Web.config

We would like to display a particular web page when the role of people who are not administrators, sfaff and data entry administrators are logged in to our ASP.Net web site. We would like to display ...
0
votes
1answer
90 views

Spring LdapAuthentication and Load roles from local database

I have Spring Security configured to authenticate against LDAP server. <security:authentication-manager > <security:ldap-authentication-provider user-dn-pattern="uid={0}" /> ...
0
votes
1answer
20 views

Mongo Admin set with dbAdmin role

I am using Mongo 2.4. I had a single user in the Admin db, and added the role "clusterAdmin", when I meant to add the "userAdmin" role. Now I can't execute any user-admin based operations. I ...
1
vote
1answer
45 views

Can I use a ViewBag value to determine useable functions?

So I am currently using a ViewBag set in the login to determine if they can see admin only stuff. This is done this way because Roles.CreateRole, Membership.CreateUser and Roles.AddUserToRole is ...
0
votes
0answers
12 views

SQL Server - Automatic Role Granting Based On User Activity?

I have a system with users, roles, user-created content, commenting, rating, and possibly more types of interactions later. I want to be able to grant a user some roles automatically based on how ...
1
vote
1answer
22 views

Can Flyway drop database-level (not schema-level) objects for SQLServer?

Flyway operates at the schema level. What about objects at the database level, e.g. roles? It seems that these database-level objects are within the scope of what an application owns and could be ...
0
votes
0answers
43 views

WSO2 Identity Server: Cannot assign user role with SCIM

I am using WSO2 IS 4.1.0.When trying to assign a role by using SCIM i got following message in server log. [2013-05-05 22:28:58,481] INFO ...
0
votes
1answer
24 views

Do I need a controller for each role in Ruby on Rails 3?

My Ruby on Rails 3 application is using Devise and Cancan. Concerning the roles, I have admins, managers, users and guests. I have some Posts and I use the generated index function to get my Posts ...
0
votes
1answer
36 views

Role implementation not picked up by menu list

I am implementing user roles. I have menu list drawn in HTML and I am controlling the visibility of them from my code behind. I have 3 database tables, User w/ User_Number, User_Role_ID, Roles w/ ...
0
votes
1answer
32 views

assign user roles and rights to a blog in blogengine programatically

I am looking into blog engine and would like to be able to setup a blog for every user in my asp.net membership provider. This is easy to do, although setting up the permissions is not so simple. ...
0
votes
0answers
107 views

Sonata Admin Bundle remove routeCollection roles

I'm using Sonata Admin Bundle and I'm having some troubles with the function: function configureRoutes(RouteCollection $collection){ } The function works correctly if I write a simple: ...
0
votes
0answers
96 views

Access denied creating App_Data subdirectory — if(roles.isuserinrole)

I am fairly new to MVC4. I am able to login without any issues to the site, but when I add an @if(Roles.IsUserInRole("Admin")) statement to the Index page i get the error of access denied creating ...
0
votes
0answers
12 views

Setup up users with roles using Windows Authentication

I am developing an intranet app that I want to use Windows Authentication through active directory. This issue is I also want to use roles, can these be setup on the server of the intranet app or does ...
0
votes
1answer
57 views

Making custom WordPress user roles require admin validation to register

I'm working on a WordPress project that has a few custom user roles and I modified functions.php to enable new users to choose from them during registration, but I need all but one of those roles to ...

1 2 3 4 5 16