Questions tagged [membership-provider]

Membership providers provide the interface between Microsoft ASP.NET's membership service and membership data sources. ASP.NET 2.0 ships with two membership providers: SqlMembershipProvider, which stores membership data in Microsoft SQL Server and SQL Server Express databases ActiveDirectoryMembershipProvider, which retrieves membership data from Microsoft Active Directory

987 questions
11
votes
3 answers

Can I use OpenId with the ASP MembershipProvider?

I have a ASP.Net 2.0 website that is currently using a custom MembershipProvider and the standard login control. I would like to replace the login control with the one from DotNetOpenId. I override the ValidateUser which checks the username and…
tpower
  • 53,004
  • 18
  • 65
  • 99
11
votes
4 answers

Which Membership Provider implements users stored in web.config?

Having a code-blind moment. ASP.NET 4.0. Web.config:
tomfanning
  • 9,330
  • 4
  • 48
  • 76
11
votes
3 answers

Membership Providers and HIPAA Compliance

Does anyone know if the provided SQL and Active Directory Membership Providers in ASP.NET 2.0+ are HIPAA compliant? Clarification: I understand that HIPAA mandates patient information be secured and that certain policies be put in place to secure…
MyItchyChin
  • 12,915
  • 1
  • 21
  • 43
10
votes
2 answers

ASP.NET Membership/Role providers for Postgres?

I am creating an MVC site and would like to use the built in Membership and Roles for .Net. I'm using the the .Net Data Provider for Postgresql (Npgsql), but am having trouble defining the membership defaultProvider and Postgresql connection string…
JeffG
  • 3,172
  • 1
  • 23
  • 33
9
votes
1 answer

Authenticate and GetRoles of ActiveDirectory users in a disconnected WPF application via MembershipProvider

I have a project requirement where I need to authenticate against ActiveDirectory in a remote/disconnected WPF application. There is probably several ways to attempt to do this, but what would be the best approach using ActiveDirectory's…
D3vtr0n
  • 2,630
  • 3
  • 30
  • 48
9
votes
3 answers

Custom MembershipProvider Initialize method

When overriding the MembershipProvider and calling it directly, is there a way to fill the NameValueCollection config parameter of the Initialize method without manually looking through the config file for the settings? Obviously this Initialize…
JHORN
  • 463
  • 3
  • 11
9
votes
2 answers

Authentication with Asp.Net, RavenDB and OAuth support

Building a website that also will require an API and therefore (possibly) OAuth support for login I'm in doubt how to approach he user and authentication-part. So I've got an ASP.NET MC4 application with RavenDB. What is the best approach? To use…
esbenr
  • 1,116
  • 1
  • 9
  • 32
9
votes
1 answer

Composite C1 - Membership Provider - Simple Registration and Login

I am developing my first application using the Composite C1 CMS as the core system. I am currently working my way through the documentation and learning about data structuring, etc. I see that there is a paid Extranet package which can be purchased…
TGuimond
  • 5,325
  • 5
  • 39
  • 50
9
votes
2 answers

NonComVisibleBaseClass was detected; How do I fix this?

My class derives from System.Web.Security.MembershipUser I am getting this error when submitting the form. The popup form uses ASPPDFand the application did not have this problem before implementing the custom MembershipProvider goodies. Note this…
9
votes
2 answers

Saving an email change within the default Membership Provider in ASP.NET MVC

I am trying to set and save an email change using within the Membership Provider in ASP.NET MVC 3. I do not know how to properly set and change the email property within the Membership Provider. MSDN seems to suggest the MembershipUser.Email…
8
votes
3 answers

Script to create an ASP.NET Membership provider User

I created a bunch of insert scripts to add a new user to the aspnet_Membership and aspnet_User table. I can't auth, says it can't find my user. Has anyone tried to create a new membership user via T-SQL inserts? I have to do it this way because…
PositiveGuy
  • 43,266
  • 106
  • 285
  • 457
8
votes
4 answers

How to avoid using membership provider?

We are currently building architecture for thin-client bookkeeping application. It should follow two main requirements: Application should have module design. Each module can have (and they actually do have) own Role system. Later application…
y.selivonchyk
  • 6,736
  • 6
  • 46
  • 66
8
votes
2 answers

How to combine using Membership API with own application related data?

Designing a new application in asp.net 4 I have to make a decision how to use a MS SQL Membership API along with my own data in the MS SQL data base. Firstly I need to store and access user profile data in more flexible manner then the Profile…
8
votes
2 answers

Membership, MembershipProvider and MembershipUser relations in ASP.NET?

I store user data in a MSSQL table called Users. What I want to is to have accessible all user's data for actually logged user (email, address, phone, if the user is subscriber etc.). I don't want to use profiles so I decided to use custom…
o..o
  • 1,461
  • 3
  • 21
  • 46
8
votes
5 answers

Unable to initialize provider. Missing or incorrect schema. for MySql.Web connector

I am trying to use MySql Connector 6.2.2.0 for membership and role providers. The issue I'm having is: Unable to initialize provider. Missing or incorrect schema.
1 2
3
65 66