Tagged Questions

Built-in and custom implementations of ASP.NET's Role Provider, as part of Membership functionality in the System.Web.Security namespace.

learn more… | top users | synonyms

10
votes
4answers
2k views

ASP.NET MVC redirect to an access denied page using a custom role provider

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")] public class ...
8
votes
2answers
4k views

The Role Manager feature has not been enabled

Got the ProviderException : The Role Manager feature has not been enabled. So far so good. Is there somewhere a method that can be called to check if the Role Manager has been enabled or not?
8
votes
5answers
2k views

attribute for .net MVC controller action method

Essentially I want to show a friendly message when someone is not part of a role listed in my attribute. Currently my application just spits the user back to the log in screen. I've read a few posts ...
6
votes
1answer
800 views

Using Ninject with a Custom Role provider in an MVC3 app

I'm trying to use a custom role provider in an MVC3 app. I've already got the membership provider working ok using Ninject but can't seem to get the role provider working. The Membership provider ...
6
votes
3answers
641 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 caching option we can ...
6
votes
5answers
724 views

Why would this catch all block not in fact catch all

The code is fairly simple --- the issue is that there is an invalid character in the groupPath string (a '/' to be exact). What I'm trying to do (at least as a stop gap) is skip over DirectoryEntries ...
5
votes
3answers
1k views

Recommendation for third party Asp.Net membership providers

I am working on a web application that has strict security and auditing requirements (HIPPA stuff). So we are evaluating whether we should build our own custom membership and role providers or ...
4
votes
1answer
156 views

Is RoleProvider not longer available in C# Framework 4.0?

I've a Custom RoleProvider created sometime ago, and wanting to change the library to use the .NET Framework 4. Once changed, I am loosing the reference to RoleProvider class. Has something changed ...
4
votes
2answers
452 views

Use Multiple ASP.NET Role Providers Simultaneously

I'm developing an ASP.NET system that has two different 'tiers' of roles. The main tier will use Active Directory groups to determine membership, while the second tier will use a database. All users ...
3
votes
3answers
161 views

How to get users not in role,

Is there any reasonably efficient way to get a list of users who are not in a specific role? The only methods I can see are Get all the users from DB and do a check in code Go directly to the db ...
3
votes
4answers
209 views

How can I implement an ID based user system (membership, authorization, etc.) in ASP.NET MVC?

I have been thinking for a good while about how to tackle the problem of implementing an ID based user system while using ASP.NET MVC. My goals, much like StackOverflow's system are as follows: ...
3
votes
1answer
543 views

How to provide dependency injection via StructureMap for a custom role provider with WCF?

We're going to be using a custom role provider with WCF. The overridden method GetRolesForUser will require the use of an already existing RoleRepository. Now, with a run-of-the-mill class, we'd ...
3
votes
1answer
328 views

Get permission from Authorize Attribute?

I've implemented my own Authorize attribute, and I notice that it queries to check permissions when I use [Authorize]. Is there any way I can get that permission and use it in the current controller ...
3
votes
2answers
513 views

Poor Performance with WindowsTokenRoleProvider

I'm using WindowsTokenRoleProvider to determine Active Directory group membership in an ASP.NET web application. My problem is that performance is not good, especially when a user is in many groups. ...
3
votes
2answers
1k 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 webHttpBinding with Basic ...
3
votes
1answer
160 views

ASP.NET: retrieving authorised roles for a page

I have an ASP.NET site that uses a custom role provider to determine authorisation for different parts of the site. I have configured the authorised roles for different parts of the site in ...
3
votes
2answers
4k views

Where does Web.HttpContext.Current.User.Identity.Name come from?

I have FormsAuthentication.SetAuthCookie("someName", True) as part of my custom login sequence. Later, I have some page only allowing a specific role: <location path="myPage.aspx"> ...
2
votes
2answers
36 views

How to effectively set up MySQL Users and Roles in the production server WITHOUT Visual Studio?

So far I have been using the WebSite Administration Tool built in Visual Studio 2010 to manage Users and Roles along with MySQL Membership and Roles Provider. Now, I have deployed the application to ...
2
votes
1answer
58 views

Is it considered bad practice calling a provider directly?

I'm implementing a Custom RoleProvider in the .NET Membership-framework. The existing functionally needs a little tweaking, so I want to implemenet my own Public Functions, to invoke around the static ...
2
votes
3answers
61 views

ASP.NET Permission Frameworks?

Problem ASP.NET has no concept of associating permissions to roles. My app Current web application is using custom user membership and role providers. The app has 4 roles: superuser, admin, ...
2
votes
1answer
57 views

Is there a ready made roles/membership framework for ASP.NET Web Forms?

There were few questions related to this but none answered the question in my head. Suggestions included Asp.net Membership system, a search on codeplex foundation or role out your own. Rolling out my ...
2
votes
1answer
206 views

Using ASP.NET Role Provider from Non Web Application (Timer Job) to check Role Membership

I am using this code in a SharePoint web part, that checks if a user is in a role (for Forms Based Authenticated sites). foreach (string role in System.Web.Security.Roles.GetAllRoles()) foreach ...
2
votes
1answer
75 views

Starting a .NET project with Membership and Roles. Guide please

Scenario : A web application with user login, roles and permissions. Question : Is it better to start with Visual Studio's / Visual Web developer Express edition's project wizard which contains ...
2
votes
1answer
284 views

MVC3 Validation based on Users Role

We are using MVC3 with unobstructuve validation, all is fine; we got our custom validations working on the server as well as on the client. We are also using the build-in asp.net Role provider. We ...
2
votes
1answer
2k views

C# - Forms Authentication Code-Behind w Custom Role and Membership Providers

Unfortunately, all the examples for Forms Authentication Code Behind w/ Custom Role and Membership Providers I find online are written with a VB.NET code behind and I need a C# code behind. Please ...
2
votes
1answer
377 views

Reference current RoleProvider instance?

When inside an ASP.NET page, module or handler with an HttpContext present, how do I get a reference to the current RoleProvider instance? It's the provider used for authorization when the ...
2
votes
3answers
200 views

Find all User that are NOT in a specifv Role using: Roles.GetUsersInRole or different

I need populate an array with a list of Users that ARE NOT PRESENT in a specific Role and COUNT the result. At the moment I use this code, but I am not able to get the Users outside ...
2
votes
2answers
243 views

asp.net custom role provider nhibernate error

HI, I am implementing a custom role provider in my nhibernate application I have a repository that I call whenever I want to access the nhibernate session. So when my role provider initializes ...
2
votes
1answer
143 views

is there an authorizeattribute equivalent to just standard web forms (not MVC) for .net

I'm working on a project that will use windows role providers and I want to limit functionality to certain AD groups. With MVC, I could use an AuthorizeAttribute above my action methods and redirect ...
2
votes
2answers
896 views

IsUserInRole calls GetRolesForUser?

When I implement the RoleProvider class and call Roles.IsUserInRole(string username, string roleName), code execution first goes to the method 'GetRolesForUser(string username)'. Why is this? I ...
2
votes
1answer
580 views

ASP.NET MVC Role Providers for MySQL

I tried to setup role provider, using this article. It worked partially - provider created some tables in MySQL, but I cannot access it from ASP.NET Configuration Tool. I get following error, while ...
2
votes
2answers
506 views

ASP.NET MVC Custom Membership Guide

I am trying to make the move from PHP to ASP.NET. I have about 10 years experience with PHP, and 4 with C#. But I having problems with the authentication and membership system in ASP.NET. So i have ...
2
votes
2answers
331 views

How do I pass more than one value to a custom RoleProvider GetUserRoles method in my MVC app?

I'd like to glue my custom permissioning system into a new ASP.NET MVC app. I've done a fair amount of work writing my own custom AuthorizeAttribute for the app. I've also written my own custom ...
2
votes
5answers
771 views

Refresh ASP.NET Role Provider

simple question... Given I have an ASP.NET site, which uses a [custom] RoleProvider, Is there any way in which I can somehow "refresh" the provider without forcing the user to log out of the site and ...
2
votes
2answers
1k views

Custom RoleProvider with MVC 2.0

I have a custom Membership and Role Provider that I am setting up within an application. In ASP .Net Webforms I utilize the same providers and when the app is compiled and run the providers are ...
2
votes
1answer
610 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 is not ...
2
votes
1answer
664 views

Custom RoleProvider using session

I was considering using the custom MembershipProvider / RoleProviders. Unfortunately, the security layer we currently have requires some session stuff being set. So, when the IsUserInRole() method is ...
2
votes
2answers
326 views

Are there any good XmlMembershipProvider and XmlRoleProvider implementations out there that can be used for Commercial purposes?

Does anyone know of any good XmlMembershipProvider and XmlRoleProvider classes that are able to be used for commercial purposes, royalty free? I know that BlogEngine.NET uses an XmlMembershipProvider ...
2
votes
1answer
239 views

Accessing authorization information in web.config

I'm writing a custom role provider and I need programmatic access the authorization information stored in the web.config. Certain section of the site are only accessible by certain roles. I would ...
2
votes
1answer
600 views

Asp .Net MVC with Windows Authtication and SQL Server Role Based Provider

Did anybody make MVC + Windows Auth + SQL Server role based provider work on IIS 7.0? Any pointers will be helpful.
2
votes
1answer
207 views

When do asp.net role providers live and die?

I am working with a custom role provider in asp.net and it appears that once the provider is loaded into memory, it doesn't drop out of memory until the web application is restarted (like when the ...
1
vote
1answer
17 views

Referencing RoleProvider in a class library

I'm trying to create a custom role provider in a class library, and for some reason I can't reference System.Web.Security.RoleProvider. I have added a reference to System.Web in the project, yet ...
1
vote
1answer
19 views

My CustomRoleProvider doesn't seem to be used for controlling access to the application

I've set up my application to use a custom role provider by adding some lines to the Web.config file, like so: <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider"> ...
1
vote
1answer
209 views

Custom role provider web config error

I have written custom roleProvider for my Silverlight application. Unfortunately I'm getting an error while loading: Configuration Error Description: An error occurred during the processing of a ...
1
vote
1answer
117 views

Cassini ignoring Win NT role authorization, IIS 7.5 all ok

I have an ASP.NET MVC 3 application running on both my local dev box (Win7) and staging server (W2k8r2). The application operates fine in both environments until ASP.NET Windows authorization ...
1
vote
0answers
11 views

What is ISqlProviderSecuritySettings property in implementing Dynamic WCF authorization?

In the below url, dynamic WCF authorization is explained. Implementing Dynamic Authorization for a WCF service using SQL providers But the property ISqlProviderSecuritySettings is not recognized by ...
1
vote
1answer
96 views

ASP.NET How do you dynamically deny access to Role

I recently starting trying to use the ASP.NET 4 Membership and Role providers in my web applications. But I'm having problems implementing a good security methodology. I understand that using ...
1
vote
0answers
203 views

WCF RIA Services, Custom Role Provider, using in Domain Service and UserBase

I've created my own role provider in a SL4/RIA Services application, and I have had success using the [RequiresRole] attribute on a Domain Service call. I can set a breakpoint in GetRolesForUser and ...
1
vote
2answers
135 views

C# foreach leads to There is already an open DataReader associated error

I have the following bits of code in my accountRepository public string[] GetRolesForUser(string email) { // User rolesUser = FindByMail(email); IEnumerable<UserRole> RoleList = ...
1
vote
0answers
194 views

Windows Authentication with custom (my own) RoleProvider don't work on IIS

I try to implement my own RoleProvider: public class MyRoleManger : RoleProvider { public override bool IsUserInRole(string username, string roleName) { throw new ...

1 2 3 4