Tagged Questions
The role-based tag has no wiki summary.
8
votes
2answers
1k 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? ...
7
votes
5answers
262 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 ...
4
votes
3answers
1k 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 ...
4
votes
2answers
737 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
2answers
398 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
0answers
69 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.
And now we want use it in a business WPF application. Is it OK? I know ...
1
vote
3answers
521 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
...
1
vote
1answer
148 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 ...
1
vote
1answer
520 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
585 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
161 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 ...
1
vote
1answer
533 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
3answers
645 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 ...
1
vote
1answer
1k 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 ...
1
vote
8answers
251 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
1answer
30 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
104 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 ...
0
votes
0answers
106 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 ...
0
votes
2answers
390 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!
0
votes
1answer
209 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
...
0
votes
1answer
93 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
110 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
487 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
100 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 ...
0
votes
3answers
301 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 ...