1
vote
3answers
20 views
How to design a system to filter requests on roles?
I have requirement to design a WCF Service based system to filter requests on roles in C#
Rules
User can access X
SuperUser can access Y
Admin can access Z
Database
Resource …
0
votes
2answers
39 views
ASP.NET: Role-based security and page design
I have a page with a couple of grids and a small form with 7 controls. The grids show ancillary data. Overall there are about 320 lines of code-behind that handle various events. I have the …
0
votes
3answers
33 views
Group and acl on Spring Security
Hello,
I want to use Spring Security to manage user, group and permissions.
I want to use ACL to secure my domain objects but I can't find a way to assign a group to an acl.
For example:
I've got …
0
votes
2answers
23 views
Roles scheme for college course management and grading system
I've got a system that allows classroom instructors and graders to log in and manage classes and grade papers. A user can be both an instructor and a grader, and can be so for particular semesters. …
0
votes
0answers
22 views
Asp.net MVC and role caching??
Hello, I am developing an asp.net mvc app with custom membership and role providers.
My custom role provider uses LinqToEntities to query the user/role mapping table and retrieve if a user is in a …
0
votes
1answer
24 views
ASP.NET location element override behavior
Assume I have the following in my web.config (most of the file omitted for brevity):
<configuration>
<location path="somefolder/somepage.aspx">
<system.web>
…
0
votes
1answer
20 views
Roles.GetRolesForUser calls default role provider only?
I'm using multiple role providers, the standard SQL provider plus a custom one. Inside Global.asax - RoleManager_GetRoles I create a RolePrincipal for users that should use my custom provider with …
1
vote
2answers
43 views
How can I change the ASP.Net MVC Login Redirect based on role?
I have the following code I've typed into the Account Controller in my MVC project and I am in both the administrator and manager roles. When I log in I get redirected back to my home index instead …
4
votes
1answer
59 views
How can I access the meta class of the module my Moose role is being applied to?
I'm using Moose roles to apply some wrapper behaviour around some accessor methods in a class. I want to apply this role to a number of modules, each of which have a different set of attributes whose …
0
votes
2answers
58 views
ASP.Net MVC - Showing Model data based on Roles
Hi,
I have a View which needs to show and hide details based on the users role. I have 2 options
using an inline if statement in the View to show and hide details
Create multiple partial views and …
-2
votes
0answers
84 views
Programmer Power Levels [closed]
This question is retarded, but bear with me. I'm a long time roleplayer and programming dilettante. And so are my office mates. And, well, we just had a long conversation about what 'experience …
0
votes
0answers
64 views
Help with storing/accessing user access roles C# Winforms
Hello, firstly I would like to thank you in advance for any assistance provided.
I am new to software development and have designed several Client/Server applications over the last 12 months or so, I …
0
votes
2answers
124 views
Forms Authentication with Sitemap and asp:Menu control
I have a site with 2 sections - one for customers and one for admins, in essence.
Each section is in its own directory with its own web.config and sitemap. Security and access works fine.
When I am …
1
vote
4answers
191 views
ASP .NET authentication against Active Directory and Roles via ASP.NET role provider
Hello,
In my current project, we need to authenticate users of an ASP.NET application against Active Directory. I think it can be achieved using the membership provider without too much problems. but …
4
votes
7answers
223 views
User roles - why not store in session?
I'm porting an ASP.NET application to MVC and need to store two items relating to an authenitcated user: a list of roles and a list of visible item IDs, to determine what the user can or cannot see.
…
