The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
30 views

Measuring performance of enhanced role based access control model [closed]

I used a case study to enhance the features of traditional role based access control model(RBAC). case study is in java programming language. i have added features like : audit trail that performs ...
0
votes
1answer
160 views

Not been able to give role based permission in drools guvnor using jboss AS 7

I am in a BRMS technology project in financial sector. Using Drools Guvnor 5.5.0.Final with jboss-as-7.2.0.Alpha1-SNAPSHOT server. I configured the login page in guvnor using jaas successfully. Now I ...
7
votes
2answers
1k views

Why Claim based authentication instead of role based authentication

I am new to claim based authentication. I have gone throught several aricles and could not able to figure out the exact use of claim based authentication. Here are some doubts I have about claim based ...
0
votes
0answers
53 views

diff in claim base security and role based security in C#

I am new to this security model in C#. But as I am studying on this I am getting more confused. What is the difference between claim based security and role based security? What is the scenario to ...
1
vote
2answers
342 views

How to implement role based login [closed]

I want to implement role based login for my project. I have implemented admin module. In my project there are various features(access is allowed as links) based on role i want to allow access to ...
4
votes
2answers
457 views

Role-based Authorization with Model List

I've 3 models [User, Role, and UserRole] Use {ID [PK], Name, Email, Password, .....} Role {ID [PK], Name, Description, .......} UserRole {UserID [FK], RoleID [FK]} Consider, the Role-based ...
0
votes
3answers
200 views

Length of the cookie text for caching RolePrincipal is always larger than 4096

I tried implementation ASP.NET role-based authorization for my project, but I never found cookie is saved in client browser. I tried some testing code like, RolePrincipal rolePrincipal = new ...
1
vote
2answers
194 views

Generating Navigation for different user types, MVC, PHP

I have this idea of generating an array of user-links that will depend on user-roles. The user can be a student or an admin. What I have in mind is use a foreach loop to generate a list of links ...
0
votes
0answers
102 views

ios role-based access control at views and data-level

I want to implement role-based access control for an iOS application I am currently working on. Access needs to be controlled to both the views as well as the actual data. For instance, I will display ...
0
votes
1answer
95 views

SSRS report showing different record to different user. How can this be implemnetd?

I recently encountered a requirement which said "Manager should see all record but Associates only appropriate subset. I will explain my requirement with below example. I have a table. CREATE ...
1
vote
1answer
424 views

How to get all users in a role including roles in roles?

I have a Sitecore site that uses the AD module for connecting to an Active Directory. Let's say that we have a Role defined in Sitecore called "Content Authors". Content Authors may contain ...
1
vote
2answers
395 views

Role based security in ASP.NET

In my ASP.NET 3.5 application, on the ASPX pages I have to implement role based data updation policy. If a user have lest privilege, he can still update some filed but not all. Where user with ...
1
vote
1answer
221 views

Role-based access denial handling in Spring Security - how to?

I'm working on Spring based application with Spring Security. I have users with different roles and would like to implement access denial handling depending on the role. More specifically the desired ...
0
votes
1answer
250 views

I implemeneted authenticate method in wcf and want to know, How security context gets automatically loaded before each request to wcf service?

I am new to authentication and authorization concepts. I wrote an authenticate method in my wcf servcice. Methods in wcf service will get called only by authenticated users with specific roles. How ...
0
votes
1answer
366 views

How can we use the Role-Based security in a dynamic environment?

We always have problems to using role-based in large systems. In such softwares we want superusers to able to set their organization users permissions. We can create many atomic roles and create a ...
1
vote
0answers
149 views

Is it correct to use the ASP.NET Role-Based Security in a standalone WPF application?

I have a little experience to use the ASP.NET Role-Base in the WinForm apps. I know how should I use it in such applications. Now we would like to use it in a business WPF application. Is it OK? I ...
0
votes
0answers
270 views

Role Based control access .net

I need to develop a role based control access system in my application In my case I have aspx page XML file Custom role provider each control in the aspx page should have an extra behavior to ...
1
vote
3answers
2k views

Is ASP.NET role based security a true role based access control system?

From what i have read from this paper I understand that a role based access control system is one where users can be assigned to roles where roles specify permissions to perform operations on objects ...
0
votes
3answers
1k views

Rails role based authentication

Does http://code.google.com/p/rolerequirement/ Role requirement works with Rails 3? If not, where can I find a role based management plugin like this for Rails? Thanks!
2
votes
2answers
807 views

right way to have role based custom auth query database on every request asp.net mvc

This may be a slightly ignorant question but Im new to mvc so Im sorry! I studied the nerd dinner auth model but In my app I have a complicated role based authentication. So What I do is this: void ...
1
vote
1answer
247 views

Execute multiple queries then union them with LINQ?

I'm trying to build a drop down list that holds available options (i.e. a page category that a user can create a page for) for the logged in user, however, these are based on user roles due to the ...
0
votes
1answer
324 views

Role based authentication feed back to user in ASP.NET MVC

I am using role based Authentication for some of the features in my ASP.NET MVC application by implementing <Authorize(Roles:="Administrator")> _ Function AdminPage() As ActionResult ...
1
vote
1answer
748 views

How to impersonate a Windows built-in Administrator role for a WinForms, C# App?

It seems like the elevation of privileges is a common thing most developers fight with as most of the time they simply do not have it. I for one do but am fighting with a massive Background Worker ...
1
vote
4answers
1k views

Role based authorization

I am trying to use Role based authorization in declarative way, when unauthorized user attempt to access a page, it never fire an exception or show the user an error message. What I should do to show ...
1
vote
1answer
301 views

Manage User and Roles

In my WPF Desktop sample Book Store application I want to manage Users and Roles. With multiple Users I want to achieve below points 1) Application Should have multiple user 2) User has 3 categories ...
6
votes
2answers
2k views

Role Based Access Control (RBAC) - .Net Component

In my job we are trying to consolidate the Authentication of the application farm with Windows Identity Fundation (WIF) or some custom component based in Membership Provider. With this, we need to ...
1
vote
1answer
857 views

Suggest me best role based authentication/authorization method in asp.net that can work control level

I am in need of best method to achieve role based authentication/authorization. The requirements are It should check accessibility page level, based on role It should be able to handle visibility of ...
1
vote
1answer
138 views

How to disable Caching for certain roles in ASP.Net MVC?

I want to enable caching for all Anonymous users of my site. But for logged in users of certain roles, I want to disable caching. I am using .net4/ASP.Net MVC2. How do I achive this?
0
votes
1answer
139 views

iphone app with role based login?

Can iPhone apps have role based login? In my application I have to display the content according to the role of the user (employee, visitor). Till now I havent seen any app with role based login for ...
0
votes
2answers
1k views

SiteMap control based on user roles doesn't works

<siteMapNode roles="*"> <siteMapNode url="~/Default.aspx" title=" Main" description="Main" roles="*"/> <siteMapNode url="~/Items.aspx" title=" Adv" description="Adv" ...
0
votes
1answer
153 views

How to visually separate security-trimmed action links in ASP.NET MVC

I am experimenting with security-trimmed action links in ASP.NET MVC, and am considering using the SecurityTrimmedActionLink helper method described here. What I would like to do is put a vertical ...
7
votes
5answers
351 views

Why would I hard-code user permissions in my controller attributes?

I have seen example code that looks like this, which seems perfectly reasonable: [Authorize(Roles = "Admin, User")] public class SomeController : Controller But I have also seen several examples ...
11
votes
2answers
4k views

Role-based access to pages in PHP

I'm looking for a solution in PHP that will allow three types of users to pages that are relevant to them. Not everyone will access all the pages. What do I need - a role-based access control or ACL? ...
1
vote
2answers
921 views

Roles/Priviledges in a Spring/Hibernate application

In a banking or similar application there are usually several roles defined and associated privileges required (for example a normal user could only do transactions but not post it while a supervisor ...
4
votes
3answers
1k views

Flowing WCF Role-Based Security through to UI

I am looking for some best practices on how to handle the following scenario - flowing permissions from WCF service layer through to UI: I have WCF services with methods that have been decorated with ...
2
votes
1answer
2k views

Role-based security with Google App Engine and Python

I would like to ask what is the common way for handling role-based security with Google App Engine, Python? In the app.yaml, there is the "login" section, but available values are only "admin" and ...
2
votes
8answers
302 views

Anthropomorphising interfaces - good or bad idea?

I have for some time tried to anthropomorphise (meaning human readable) the names I give to interfaces, to me this is the same as give an interface a role based name – trying to capture the purpose of ...
0
votes
3answers
552 views

Scalable role based authentication

I am currently designing a role based authentication system for resources where many users have different access rights to it. A role may be a single user, or a group of roles (so a role is a tree of ...