Tagged Questions
The custom-membershipprovider tag has no wiki summary.
33
votes
4answers
18k views
How do I create a custom membership provider for ASP.NET MVC 2?
How do I create a custom membership for ASP.NET MVC 2 based on the ASP.NET membership provider?
20
votes
4answers
2k views
Microsoft Membership Provider Vs Custom Provider Vs Complete Custom Login System
I am currently converting a very old, but working classic ASP site to ASP.Net.
It has a completely custom written user management system. Whilst it works fine, it really needs a refresh as I want it ...
8
votes
3answers
12k views
HttpContext.Current.User.Identity.Name is always string.Empty
Hi I use a custom MembershipProvider.
I want to know the current username during an application scenario, but when I try accessing HttpContext.Current.User.Identity.Name it always returns ...
4
votes
3answers
1k views
How can you inject an asp.net (mvc2) custom membership provider using Ninject?
OK, so I've been working on this for hours. I've found a couple of posts here, but nothing that actually resolves the problem. So, let me try it again...
I have an MVC2 app using Ninject and a ...
3
votes
3answers
92 views
Custom MembershipProvider without MembershipUser
Is it possible to create a custom MembershipProvider without the use of the MembershipUser class?
I'd like to use my own User class and to keep things tidy, I'd like to not have to use the ...
3
votes
2answers
959 views
ASP.NET: Custom MembershipProvider with a custom user table
I've recently started tinkering with ASP.NET MVC, but this question should apply to classic ASP.NET as well. For what it's worth, I don't know very much about forms authentication and membership ...
3
votes
1answer
2k views
How can I debug a 'Default Membership Provider could not be found' error with WCF and a Custom ASP.NET membership provider?
This is problem for me with .Net 3.5 SP1 running on IIS7.5 64 bit (I tried forcing 32 bit but got the same result).
I have a WCF service that I want to use authentication-services with. When I have ...
2
votes
3answers
110 views
Do I need a custom Membership Provider class?
I do not need the Roles stuff.
I have only a user with those properties:
Id
Firstname
Last name
Institute
Street
City
Postal
Country
Email
Password
IsCustomer
IsAdmin
When the user log into his ...
2
votes
1answer
142 views
Custom Membership + Ninject + InRequestScope = ObjectContext instance has been disposed
ObjectContext instance has been disposed in InRequestScope!
I tried for several hours across the web to try to solve a problem.
The ObjectContext instance has been disposed and can no longer be ...
2
votes
1answer
75 views
Extending Active Directory Membership Provider
I have an ASP.NET web site that will use Active Directory to store Users.
There is a requirement to allow users to use their emails as username.
Active directory will not allow characters like "@" in ...
2
votes
2answers
142 views
What is the recommended method for user-specific persistent variable storage in ASP.NET when using a custom membership provider?
I have an ASP.NET application that uses a custom MembershipProvider to allow users to log in and gain access to certain features. The MembershipProvider uses ASP.NET's built-in forms authentication to ...
2
votes
2answers
709 views
ASP.NET custom MembershipProvider
I have a client server application. The client is an asp.net c# site and the server is simply a command line application in c#. I plan on using .NET remoting to access and expose information that is ...
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
1answer
695 views
Add Group Membership to Custom Membership/Roles provider
Being fairly new to the MVC Framework, I am trying to establish a custom Membership provider which can support the concept of Groups or departments.
I need to assign each user to belong to one (and ...
2
votes
1answer
119 views
I need to implement a window application and validate users against a SQL DB
Is there a way I could use custom membership provider without need to create an asp service for it?
I prefer validating the users right from within the application exe itself against the DB.
OTOH I ...
1
vote
0answers
81 views
MVC3 Custom MembershipProvider & Active Directory
I have an MVC3 application that has a custom membership provider and user/roles that are stored in the database. Users are created manually in the application as required and appropriate roles ...
1
vote
1answer
66 views
Create New User in Winforms Using HDI Membership Provider
I have a website with login and register forms using custom HDI Membership provider where Users can login or register new account.
Now I have a desktop software and trying to have two forms for login ...
1
vote
1answer
125 views
Does the default Membership Provider's OnValidatingPassword have to be overridden in custom implementations?
I am working to implement a custom Membership Provider for my .net application. I have set up the configuration for a minimum number of characters and non-alphanumeric characters, but it seems to let ...
1
vote
1answer
172 views
Custom Membership - Error in Web Site Administration Tool (Type is not resolved for member'')
I had to customize the class MembershipProvider for the user validation is done by email.
But when you open the Asp.net Web Site Administration Tool, the "Security" tab the following error:
There ...
1
vote
1answer
776 views
ASP.NET 4 Custom Membership Provider Tables
Now this might just be straightforward, but I can't seem to figure it out..
I have set up the Custom Membership provider, and gave it the proper connection stuff.
What I know is that it connects to ...
1
vote
1answer
545 views
ASP.NET MVC2 Custom Membership Provider w/ Data Provider Interface Issue
I am creating a custom membership provider class library that defines a data provider interface for my web projects to implement.
I am having an issue creating an instance of the class that ...
1
vote
1answer
634 views
Problem creating MembershipUser for custom MembershipProvider
I created a custom membership provider and am getting the following error trying to create a new "MembershipUser".
Could not load type 'MyTestApp.Membership.TestMembershipProvider' from assembly ...
1
vote
1answer
383 views
Can you use a custom membership provider with userNamePasswordValidationMode?
Every example I see uses the default Membership Provider with the userNamePasswordValidationMode, but can I specify MembershipProvider for userNamePasswordValidationMode in the ServiceCredentials for ...
1
vote
1answer
348 views
How to fine tune a Membership Provider?
After all the answers to my last question about fine-tuning turned out to be more useful than I expected, I thought that I would ask another similar Question about the MembershipProviders as well.
...
1
vote
1answer
239 views
ASP.NET Membership - keep users to use previous passwords
I created a Membership login system for my client, now they do NOT want the user to use one of his 5 last passwords when it comes time to create a new one.
Is that something that is build in or how ...
1
vote
1answer
469 views
Custom MembershipProvider with Web interface and DAL
I'm working on an ASP.NET solution with 2 projects. One is the web interface and the other contains my business logic. I'm using LINQ to SQL for my data access in the second project.
Apart of my ...
0
votes
1answer
9 views
XML cusomter membership provider type c#
Here is my class declaration:
public class XmlMembershipProvider : MembershipProvider
{....}
and my web.config snipit:
<membership defaultProvider="CustomXmlMembershipProvider">
...
0
votes
0answers
51 views
The user name or password provided is incorrect. in MVC 3 Internet Application
I have a "Internet Application" - "A default ASP.NET MVC 3 project with an account controller that uses forms authentication." called MyMv3App. I run the site in IIS Express using Ctrl + F5 and then I ...
0
votes
2answers
43 views
Using custom MembershipProvider and Roleprovider in IIS 7.0
I'm writing a ASP.NET MVC 3 web site. This is my custom MembershipProvider (only ValidateUser realized):
public class RFMMembershipProvider : MembershipProvider
{
IUserService userService = new ...
0
votes
0answers
16 views
Custom AD Membership Provider
I'm currently implementing a Custom Membership AD Provider in C#.
Until the last week, this Provider worked well on an old server. This week I have installed a brand new 2008 R2 Server (etc etc) and ...
0
votes
1answer
43 views
How to inject repositories into a custom MembershipProvider?
It seem i can't get this to work. I made a custom MembershipProvider and i want to inject a repository inside but the [Inject] property just doesnt work.
public class PyrosphereMembershipProvider : ...
0
votes
0answers
137 views
Asp.net mvc3 with custom membership provider logouts user after half a minute, why?
I have a MVC3 webapplication with a custom membership provider. When debugging locally it works fine, but since I've uploaded it to a remote web server it logouts the user c.a. half a minute after ...
0
votes
2answers
64 views
ASP.NET FormsAuthentication frustration: how can I wire up a custom MembershipProvider?
It seems I was not expressing my question well, so I am adding this as a supplemental title: How can I extend the FormsAuthentication class so that I can override default behaviors in a configuration ...
0
votes
1answer
88 views
Get current MembershipProvider name
I am using ASP.NET 4.0 membership api in web form application.
I want to get the name on the current membershipProvider during runtime (either "UmbracoMembershipProvider" or ...
0
votes
1answer
62 views
Implementing Custom Membership Provider in asp.net 2.0
Related
Implementing Custom Membership Provider Membership User Issues
Extending a Custom Membership Provider
Question
If i have different SQL table schema for Roles, Profiles should i create ...
0
votes
0answers
32 views
Moving from ASP.NET WebSite to ASP.NET Web Project, Profiles, and what would really be the best way to go about this
I am converting my code from being implemented as a ASP.NET WebSite to a ASP.NET Web Project. I have discovered that ProfileCommon is not actually usable in the same way that was with the ASP.NET ...
0
votes
1answer
116 views
Problem using HDI membership provider with asp.net
I am trying to use HDI custom membership provider and after seting up with web.config when I run the applcation it gives me an error as shown below.
And I am unable to know where I am going wrong?Can ...
0
votes
1answer
162 views
MembershipProvider custom - Error on saving using EF POCO 4.1
I'm customizing the class MembershipProvider.
When navigating to Asp.net Web Site Administration Tool can list the users normally.
The code below is responsible for entering the user in the ...
0
votes
2answers
411 views
MVC3 Custom Membership provider
I'm working in a MVC3 application using Custom Membership Provider. The problem is when I get the display of the login page, for some reason the page doesn't load the style sheet neither the ...
0
votes
1answer
89 views
ASP.NET MVC3 login not for long
I am using own membership provider and I can login and logout. When I login, it is been login just for a moment and then no user is login. I don“t know where is problem but when I am trying it on my ...
0
votes
4answers
250 views
ASP.NET MVC3 and EF4.1 - How to customize Membership after run aspnet_regsql?
I need to implement in my social network application a customized membership, and add information to the regular aspnet tables in an existing database, as Country, Province, City, Birthdate, etc, etc, ...
0
votes
0answers
31 views
Context object and custom Membership/Role Providers
I am working on my first ever asp.net MVC application. I have the following class created that will return back a context as required.
public static class TestDBContext
{
public static MyDB ...
0
votes
2answers
87 views
Create a brand new custom membership provider and authenticate from that
I have to develop a brand new custom membership provider(MyCustomProvider) in which i have to implement all the methods like validate user, CreateUser and all other and use this membership provider as ...
0
votes
1answer
106 views
ChangePassword Control doesn't work
Im currently doing an application in .net using c# and I want to use the change password control.
The problem is...I always get an error of "Password incorrect or New Password invalid. New Password ...
0
votes
2answers
77 views
WCF REST - how best to architect for multiple users but also limit access
I'm new to WCF and REST so please excuse any obvious questions.
I'm trying to create a RESTful API that will be used by clients. The API needs to be available only to authenticated users so I ...
0
votes
1answer
1k views
Asp.net MVC3 + Code First + Custom Membership Users and Provider classes?
I'm using ASP.NET MVC3 with EF Code First. I'm new to both tech, so please be gentle!
I have a requirement that I will need additional properties for the User (such as company name, first/last ...
0
votes
1answer
272 views
MVC3+Razor template/guidance with custom membership
I'm pretty new to MVC and looking for an MVC3/Razor web project template that uses a custom membership provider (or custom authentication whatsoever).
I want the project to contain a SQL database, ...
0
votes
2answers
437 views
ASP.NET MVC3 + JQuery Mobile: Custom Membershipprovider (no logincontrol)
I'm currently rebuilding one of my ASP.NET [Webform] Sites with JQuery Mobile + MVC (Razor Viewengine).
Now I'm having problem porting the Membershipprovider to the new technique, because I can't use ...
0
votes
1answer
205 views
Validating the user with Membership Provider
I'm customizing a form of validation of the users in my application Asp.net MVC 3.
How can I implement the method ValidateUser?
My problem is the password for the MembershipUser class (which I also ...
0
votes
2answers
211 views
Simple Asp.net Custom Membership Provider
In the past I've used the default SQL Membership provider to secure a website. This worked well but required the creation of the ASP_Authentication database (using the reg_sql tool) and dozens of ...