0
votes
2answers
35 views
ASP.NET Provider with Different Types of Roles
Hello,
I have different types of Roles to take into account when authorizing a user.
For example: John must have Position Manager and be part of the Office Supplies Department t …
0
votes
2answers
47 views
Setup roles programmatically from a console application
I'm writing a setup-application for our web application. One of the tasks is to setup the database for the built-in SqlRoleProvider. I've got my script to create the database with …
0
votes
2answers
99 views
Advanced .NET Membership/Role Provider
I'm in need of a RoleProvider with the following functionality:
Dynamic Assignment of Roles to Tasks
Authentication / Authorizaiton of IPrincipals based on the dynamically allocat …
2
votes
3answers
60 views
Role Caching Strategies in ASP.NET MVC
We have an ASP.NET MVC application for which we have developed our own custom RoleProvider class. Without caching it will access the datastore for every request - bad. The only cac …
1
vote
4answers
43 views
Crete a Shared View using a Model method
I want to create a shared control where i want to generate markup according to the role of logged in user. TO achieve this I need to call a method in Model class. Is this a right w …
1
vote
3answers
41 views
How to create different View depending on logged in user’s role in asp.net MVC?
I am kinda new to MVC, so need your help getting me through a problem:
In my application the LogOn will be done using the Role of the user. I have my custom database schema (like U …
0
votes
1answer
21 views
urlauthorization with custom roleprovider
I am interacting with a third party httpmodule for authentication. I implemented my custom roleprovider to interact with that. However they use a CustomPrincipal instead of the exp …
0
votes
2answers
158 views
Refreshing a sitemap-based menu on ASP.NET site when roles change
I'm using ASP.NET Sitemaps with a custom Role Provider to generate a site Menu that displays available links depending on user role.
This works fine if the roles don't change whil …
0
votes
1answer
128 views
Sharepoint permissions with Windows Authentication and custom Role Provider
What I'm trying to do is the following:
I want to use Custom Role Provider's role name into a sharepoint group (maybe like visitors) to restrict permissions and users resolved aut …
2
votes
1answer
78 views
How to redirect role-based security exceptions to custom page (ASP.NET)
I have very simple:
[PrincipalPermission(SecurityAction.Demand, Role = "Administrator")]
public partial class _Default : System.Web.UI.Page
This works - it denies access if role …
1
vote
2answers
159 views
Is it possible to use ASP.NET MembershipProvider/RoleProvider in self-hosted WCF services?
I am trying to use custom ASP.NET MembershipProvider and RoleProvider to handle security for my service. The service is self-hosted in a console app, not in IIS.
I use webHttpBind …
1
vote
3answers
370 views
ASP.NET Role Provider vs Membership Provider
Please refer to this post.
I have become able to configure my web.config file so that when an unauthenticated user requests a page, he is redirected to the Login.aspx page.
I hav …
1
vote
1answer
77 views
Custom RoleProvider using session
Hi,
I was considering using the custom MembershipProvider / RoleProviders.
Unfortunately, the security layer we currently have requires some session stuff being set. So, when the …
0
votes
2answers
178 views
ASP.NET Role, RolePrivider, ASP.net sql server setup wizard
I am using asp.net forms authentication, membership provider and role provider.
You can refer to this post.
This post helped me to restrict access of the users to the specific ar …
3
votes
2answers
239 views
ASP.NET MVC redirect to an access denied page using a custom role provider
Hi!
I'm creating a custom role provider and I set a Authorize attribute specifying a role in my controller and it's working just fine, like this:
[Authorize(Roles="SuperAdmin")]
…
