Built-in and custom implementations of ASP.NET's Role Provider, as part of Membership functionality in the System.Web.Security namespace.
0
votes
0answers
7 views
MVC 4 - RoleProvider to manage authenticated users permissions with different scopes
Here is my problem with my MVC 4 Internet project using Forms Authentication.
Lets say i have hotels and i want the authorized users accessing each under different roles.
So the user logs in. Then ...
0
votes
1answer
33 views
Why CustomRoleManager Initializer not run in Web API?
I created custom membership and custom role provider follow exact same this link:
for custom membership:
http://msdn.microsoft.com/en-us/library/6tc47t75(v=vs.100).aspx
more info:
...
1
vote
1answer
31 views
ASP.net MVC RoleProvider with Ninject & CodeFirst
I'm using a CodeFirst database for my application and built my own RoleProvider. It uses a specific Uow which I inject using Ninject. On my local machine everything works fine. On the production ...
1
vote
0answers
62 views
System.Web.Security.Roles.GetRolesForUser(currentUser.Identity.Name) just one time works true
in an internet mvc 4 project, when run the project in debug mode,and login to application,the role for user wich was assigned before will recognized. the function that i use for getting user roles is ...
0
votes
0answers
38 views
ASP.NET Membership and Role Provider dont access in intranet
I have an application with ASP MVC with Membership and Role Provider on an intranet, when I access the application from the server, the application authorizes me to use but when I identify in clients ...
1
vote
1answer
69 views
WPF, Active Directory and Custom Role Provider
I have a WPF client/server application using WCF on the server side. It is presently unsecured and I'm wishing to secure it for a userbase on my Active Directory. The application should host it's own ...
0
votes
1answer
43 views
Things to consider when using a Custom Role Provider with IIS6
I deployed a website on IIS7.5. It worked fine. When I tried to deploy it on IIS6 I got a "Configuration Error" regarding the CustomRoleProvider(*Line 65*) . What seems to be the problem?
...
1
vote
0answers
40 views
Using a custom RoleProvider with a SimpleMembershipProvider
I want to add a layer between my users and the roles. A user would have "group" and I would then assign roles to my group instead of my users. This makes it easy to change to roles for all 'employees' ...
0
votes
1answer
87 views
ASP.Net Roles and Membership check for Users in role for multiple roles
I have users in membership and one user can have one or more than one roles assigned. I want to check for specific roles of a page for example:
Role1, Role2, Role3, Role4, Role5
Users who have ...
0
votes
0answers
148 views
MVC 4 Authorize Contoller Attribute Active Directory
I hope someone can help me. I've seen lots of posts on this question and I've been searching for hours, but I can't seem to get it to work. I've created the default MVC 4 Intranet Application and ...
0
votes
1answer
55 views
WCF service to handle Authentication and Roles
I am trying to create a simple WCF service to handle various security scenarios, but am not really sure where to begin.
The WCF service will be hosted on IIS (most likely). It needs to be accessible ...
1
vote
1answer
55 views
Custom Role Provider not triggering in webservice
<system.web>
<compilation debug="true"
targetFramework="4.0" />
<httpRuntime requestPathInvalidCharacters="" />
<authentication mode="Forms" />
...
1
vote
1answer
90 views
Mock default role provider for controller's action unit test
Hope this is not a dumb question. I've been searching for two days a way to mock calls for system.web.security.roles on my actions.
I want my unit tests to be isolated and not involve calls to ...
1
vote
1answer
194 views
What would be equivalent web.config configuration for “enableSimpleMembership”="true:
What would be equivalent configuration of Membership and Role providers in Web.Config for:
<appSettings>
<add key="enableSimpleMembership" value="true" />
</appSettings>
in ...
0
votes
1answer
99 views
Role Provider cookie not being set properly
We use a custom RoleProvider to get our roles for our ASP.NET application. It is getting the roles properly, but if we enable the cacheRolesInCookie option in our web.config file. The cookie doesn't ...
0
votes
0answers
195 views
Handling Errors from Custom Role Provider C# MVC4
I have build Custom Role Provider project working with MVC4 C# application and it works fine but when an error occur in role provider like SQL Server is down application receive error like:
Source ...
1
vote
1answer
116 views
Initialize DefaultRoleProvider connectionstring with code
I have a wbe app mvc c#4.0, I want to Initialize DefaultRoleProvider connectionstring from code at runtime (don't want it from web.config).
I created a class MyRoleProvider : DefaultRoleProvider
...
2
votes
2answers
171 views
IsUserInRole Error with SimpleMembership
I use this codes for Role Authorization on my ASP.NET MVC 4 Internet Application..
@if (Roles.IsUserInRole("RolunAdi"))
{
<a href="#">Test</a>
}
It works normally but sometimes I ...
1
vote
0answers
72 views
How to make a site editable vs. readonly depending on Roles.
I have a project with many large views (editable forms; think surveys of sorts). The customer, in pilot phase mind you, wants a role that can view all forms and elements, but should not be able to ...
2
votes
2answers
80 views
Should my custom RoleProvider throw an exception in AddUsersToRoles?
I'm implementing a custom ASP.NET role provider, and I'm wondering whether its AddUsersToRoles method should throw a ProviderException if a user passed in is already in a role passed in. The default ...
0
votes
1answer
129 views
SSRS 2008 R2- can you use a Custom Role Provider?
We are using SSRS 2008 R2 (Native Mode) for reporting for an internal ASP.NET intranet web forms application (I’ll call it SAS, sales accounting system, for this example). The app uses a custom role ...
1
vote
3answers
583 views
ASP.NET MVC - FormsAuthentication.SetAuthCookie() and RolesIsUserInRole - wierd behavior
I have something like this:
FormsAuthentication.SetAuthCookie(user, false);
var tmp = Roles.IsUserInRole("administrator");
var _tmp = Roles.IsUserInRole(user, "administrator");
tmp is always false, ...
1
vote
1answer
167 views
Error message does not appear on failed login using asp.net mvc 4 with a custom role provider?
I'm trying to implement a custom role provider and I found a tutorial and followed it.
Here is the link: http://techbrij.com/custom-roleprovider-authorization-asp-net-mvc
When I try to login using ...
1
vote
1answer
718 views
MVC4: UserIsInRole - Unable to connect to SQL Server database
Breaking my head around with this, yesterday it worked fine and today it seems to be broken:
This line is generating the error:
@if (Roles.IsUserInRole(HttpContext.Current.User.Identity.Name, ...
2
votes
1answer
142 views
Asp.net Custom RoleProvider with additional function parameters
Background
I have a custom Membership and Role provider for my ASP.net MVC application which works perfectly. A recent requirement however means that I must modify the Role provider to allow for some ...
0
votes
1answer
191 views
Capturing Return Value of stored procedure
im trying to implement Custom Role provider for my .Net application. Im trying to check if the role added by user already exists in the db or not by using the Asp.NET's role provider stored procedure ...
0
votes
0answers
44 views
Alternatives in placing IsUserRole in mvc code to hide button or features?
Using MVC 3, using LDAP to verify users, enabled Rolemanager in .Net security.
my config:
<authentication mode="Windows" />
<..etc..>
<roleManager enabled="true"
...
0
votes
0answers
71 views
Configure default role provider in subfolder
I have a two custom role providers. One of them is set as the default role provider in the root web.config
<roleManager enabled="true" defaultProvider="COS" cacheRolesInCookie="true" ...
2
votes
3answers
166 views
Manage user access to pages in ASP.NET
I am using MembershipProvider and currently a have 3 roles:
User, Super User, Admin.
Also I have pages that can be seen only by Admin and Super User.
For these pages a I use configuration in web ...
0
votes
1answer
52 views
Is it possible to pass additional data to custom RoleProvider in MVC?
I am implementing my custom Role provider. I need access to some additional data in the following functions and I am not sure if it is possible. Is there a way to instantiate the CustomRoleProvider ...
0
votes
1answer
207 views
custom Role Provider initilized but not being used?
I am trying to use a simple custom role provider and using the code from here: http://code.google.com/p/sfckopanka/source/browse/trunk/App_Code/OdbcRoleProvider.cs?r=45
Which is implemented using ...
5
votes
1answer
251 views
Does Role Provider cache per request?
My MVC application makes use of a User's Role in multiple places during individual page requests. My question is whether the default SqlRoleProvider caches the current User's Roles for the lifetime ...
2
votes
3answers
3k views
SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified
Well i have a big problem that i'm trying for days to solve but i could not do it, so i need your help. I have a web application in asp.net 4.0 where i implemented custom membership and role ...
1
vote
0answers
28 views
Is there a way you can specify a custom ROLES table to use just like you can specify the USERS table in Websecurity.InitializeDatabase()?
So I know you can specify what custom table you would like to use for the Users table when utilizing the InitializeDatabase method on the WebMatrix.WebData.Websecurity class, but I wanted to find out ...
0
votes
2answers
327 views
ASP.NET dynamic role based operation access
I wish to implement a role based operations restrictions in my site. For example, I wish to restrict the ability to edit a post only by the post author or a set of groups.
I do know that I can write ...
2
votes
1answer
247 views
Symfony2 in_memory users provider issue
I have a Symfony2 application that loads users from in_memory_ user provider.
The security.yml is the following:
security:
encoders:
Symfony\Component\Security\Core\User\User: plaintext
...
3
votes
0answers
200 views
Using WebSecurity with NHibernate and Postgresql?
since I want to use Postgresql and NHibernate in my ASP.NET MVC4 project I am wondering if it is possible to use the WebMatrix.WebData.WebSecurity for security and authentication features? NHibernate ...
1
vote
1answer
52 views
Adding more than one role to a user after registring in asp.net
in my web site, i have three roles(Editor , Reviewer and Author)
In some situations I need to add my user all 3 roles by coding. how can i do that?
an also how can i update my user roles? thank you ...
0
votes
1answer
191 views
asp.net mvc, multiple CustomAuthorize Role Providers
I am trying to lock my application down to each method where by users and admin can see the whole controller but only administrators can create, delete, and edit.
I have created a CustomAuthorize ...
0
votes
1answer
215 views
Custom RoleProvider with singleton DbContext possibly conflicting with PerRequest DbContext in MVC3 website
I have an MVC3 application using Entity Framework 4.1 and Ninject. It uses a standard Repository pattern which accepts an IUnitOfWork/DbContext (from Ninject) on a PerRequest basis.
The website has ...
1
vote
2answers
191 views
How to call custom methods of a role provider?
OK, I've created my custom role provider and added it to the web.config. Here's part of my code for the role provider:
public class MyCustomRoleProvider : RoleProvider
{
public override bool ...
0
votes
1answer
149 views
Custom RoleProvider in a MultiTenant MVC App
I need to develop a custom RoleProvider for a MultiTenant web app.
At the DB level, we have a table that relates Users with Roles with Tenants.
My problem is that RoleProvider gets user roles just ...
1
vote
3answers
144 views
How to Custom Authorization from database
Normally use authorization settings to interact with the roles.
<location path="Register.aspx">
<system.web>
<authorization>
<allow roles="Administrator"/>
...
0
votes
0answers
585 views
MVC3 C# LDAP active directory with forms authentication using roles
I have been tasked with changing my authentication to Active directory and need a little bit of help.
I am referancing another post because you cannot add to it anymore (comments).
...
0
votes
0answers
77 views
How to get AD groups for users using custom role provider
I am using custom role provider (based on the ASP.NET Active Directory role provider but with SqlMembershipProvider).
public class CustomRoleProvider : WindowsTokenRoleProvider
I have ...
0
votes
1answer
127 views
Own rolemanager provider without aspnetdb.mdf
I'm using rolemanager and security trimming for my menu. Since my server isnt too friendy about this ASPNETDB.mdf, I've created an own rolemanager in xml and c# class. But Visual studio is still ...
0
votes
0answers
48 views
Implemeting CustomRoleProvider and use the role for the authorisation in MVC3 asp.net
I've been learning how to implement CustomRoleProvider from a few tutorials and managed to implement 2 main methods as below
public override string[] GetRolesForUser(string userName)
{
...
5
votes
1answer
177 views
What are the under-the-hood positive reasons to use the default membership provider or a custom one that inherits it?
I posted this question about 8 months ago. The accepted answer touches on some of the things you would miss out on by not playing by the default provider's rules. For example, if you do not use a ...
0
votes
2answers
2k views
ASP.Net MVC 4 Getting Roles during login to redirect to appropriate page
I am trying to redirect the user to the appropriate page on login. So I check to see if they are in a role and then redirect based on membership. However, Roles.IsUserInRole() doesn't seem to work. ...
0
votes
1answer
117 views
What could cause many data access exceptions using EF code first in a custom RoleProvider?
My role provider looks like the class below (abridged). I am running on IIS Express, and SQL 2012 Express, from VS 2012, and I get a multitude of seemingly random exceptions in this role provider ...




