Tagged Questions
The role-base-authorization tag has no wiki summary.
5
votes
6answers
195 views
Where in the call stack should role checks be done?
In my typical app, the user clicks a button in an aspx page, invokes a C# business object, then runs a stored procedure.
Should role checks be done at the top of the stack, the bottom of the stack ...
2
votes
1answer
25 views
How to use custom role-based authorization with Windows authentication in ASP.NET MVC3?
I'm creating an ASP.NET MVC3 intranet application with Windows authentication. I only want domain users to use this application. Once a domain user is authenticated (with Active Directory), I'm ...
2
votes
1answer
209 views
ASP.net How to handle login/logout with role based access
Scenario: I have the membership provider setup and its currently pointing to a SQL database on my machine. The role based access works and I have a menu that is security trimmed. The user can only get ...
1
vote
1answer
99 views
How to secure content in Orchard CMS
I'd like to use the roles and membership ability of Orchard CMS to limit access to a staff portal in Orchard CMS. At present there doesn't look like there's an out of the box way to do it.
I've found ...
1
vote
1answer
120 views
Database design for Multi level Rolebased authorization
I'm designing an application in ASP.NET Web-From which require Multilevel role-based authorization and permission (CRUD Operation ) .
It required to do authorization users at accessing Web-Forms and ...
1
vote
2answers
120 views
Suggestion on JSF authorization
I learnt how to use container authentication with JDBC realm.
I searched a lot on internet but I couldn't find anything on JSF authorization except the following article.
JSF authorization
My goal is ...
1
vote
2answers
89 views
Look for a role-based authentication solution in java
I am building a project which is related to the user authentication.
The project is about the task manager for the company.
The company contain many departments,and one department may contain more ...
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 ...
0
votes
0answers
30 views
Is there a sample application in WPF about the role-base access control?
I'm looking for a sample code for role-base access control WPF application. Something like:
MyPrincipal.CurrentPrincipal.IsInRole("Administrator");
Would you please offer me one? Thanks!
0
votes
1answer
75 views
Vaadin appfundation authorization
I'm using vaadin for my project.I have implemented the User authentication using vaadin appfundation plugin,I need to apply role base access(Authorization) to the my application,But I don't know how ...
0
votes
0answers
12 views
Custom Authentication & Authorization in ASP.Net
I want to use our own existing DB structure for Authentication & Authorization.
Tables :
1. Users
2. Roles
3. UsersRoles
I want to use login view also.
Please suggest me how to Authenticate & ...
0
votes
0answers
189 views
Thread.CurrentPrincipal resets to new GenericPrincipal (WCF RIA services)
WCF Ria services Thread.CurrentPrincipal shows empty generic identity while serialization of entities.
06-23-2011 7:49 PM | LINK
I am using WCF RIA services Beta version. I have implemented role ...