The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
51 views
+50

custom membership provider and unity dependency injection

I have found a few questions similar to the one I'm posting but I'm not getting from them what I really need. I'm still struggling to implement my CustomMembershipProvider using Microsoft Unity DI. ...
0
votes
1answer
26 views

How to create custom WebSecurity.Login and WebSecurity.CreateUserAndAccount methods in MVC 4?

When we choose New Project --> MVC 4 --> Internet Application, it will automatically generate AccountController for us. In this controller, I only care about 2 actions, Login and Register. In ...
0
votes
0answers
9 views

Custom ADMembership Provider with Trusted Domain - SharePoint 2010 Claims

Does any here came across building ADMembership Provider for SharePoint 2010 Claims Based that support authentication over trusted domain? The current out of the box AD Membership and LDAP Membership ...
0
votes
0answers
27 views

Custom Membership Using Ninject

I am making a web application in Asp.net MVC4. I am using Custom Membership Provider and Ninject. My Application is divided into multiple projects and I am using Ninject. I am fairly new to Ninject. ...
0
votes
0answers
30 views

WebSecurity.Login throws a ConfigurationErrorsException with my customized MembershipProvider

I have built my custom membership provider by implementing the ExtendedMembershipProvider. Then I add the type name under memberhip -> providers in Web.Config. in <appSettings>, ...
0
votes
0answers
15 views

How to make an ExtendedMemberhsipProvider which use a web service?

I have two asp.net mvc 4 projects: The first is the web site The second is the web service (Web Api) The web service handle the business and data access layers. So i can't have any class directly ...
0
votes
1answer
203 views

Custom Create User in ASP.net MVC 4

I have made an asp.net MVC 4 Internet application. I wanted to have custom Create User function. So I used CreateUser function of MembershipProvider class and added <providers> configuration in ...
0
votes
1answer
84 views

ASP.net Custom membership on top of quality center authorization

I am relatively new to authorization/memberships in asp.net, so pls excuse if I ask anything silly. I have been looking at lot of examples to implement a custom membership provider in .net (in ...
1
vote
1answer
61 views

Custom Role Provider not triggering in webservice

<system.web> <compilation debug="true" targetFramework="4.0" /> <httpRuntime requestPathInvalidCharacters="" /> <authentication mode="Forms" /> ...
1
vote
1answer
69 views

MVC3 Locking membership user

I want administrators on my site to be capable of locking members out, but the IsLockedOut() for the default mvc membership is readonly. I read that I need to create a custom membership provider, but ...
2
votes
1answer
75 views

Custom membership provider and Unity injection

I have created a custom membership provider for my MVC4 solution. The problem is I can't get it injected through Unity. I have tried using constructor injection, but then I get the parameterless ...
1
vote
1answer
81 views

Email Verification Issue with UserID

I am trying to use create user wizard in asp.net for creating new accounts based on this article www.4guysfromrolla.com/articles/062508-1.aspx, disabled his account for immediate login and send email ...
0
votes
0answers
11 views

Custom Membership Constructor Instantiation

I'm wondering how the constructor in a Custom Membership Provider is Instantiated by .NET Framework. I've added a parameterless constructor in my Membership Provider. I was thinking of Dependency ...
1
vote
3answers
115 views

Does asp.net membership really provide a secure and robust solution for login, authentication, authorization of web applications?

I heard that the hashing algorithm for asp.net membership is sha-1, but I've seen in most articles that it is no longer safe, also I would like to know if most professional developers are using ...
1
vote
0answers
287 views

How To Customize Authentication And Authorization in ASP.Net MVC 4?

How can i modify the default Authentication System in MVC 4 Internet Application template. I want to use only social login, have a role based system, maintain a user profile with additional ...
1
vote
2answers
441 views

How to configure Ninject for MVC4 & custom Membership provide?

According to this article description custom-membership-provider-with-repository-injection I implement the custom Membership provide with inject. Custom Membership provider using Ninject; public ...
0
votes
0answers
156 views

Custom ExtendedMembershipProvider

I am looking to create my own profiler provider, mostly for a learning experience. I want to support OAuth and from reading around the ExtendedMembershipProvider class seems to be the one I want to ...
0
votes
0answers
122 views

Modifying Custom membership provider

I am trying to use custom membership provider class from here and working pretty well. But my problem is I would like to remove password question and password answer from this class. Here is my ...
0
votes
0answers
76 views

MVC4 CodeFirstMembershipProvider

I'm trying to figure out how to work with Custom Membership provider in MVC4, instead of built-in one. I'm using CodeFirstMembershipProviderSharp since MVC3, so my web.config and ConnectionStrings are ...
0
votes
0answers
151 views

Customize Security Guard Membership [closed]

I download and try to use Security Guard Membership from https://github.com/kahanu/Security-Guard The scenario is i want to create a CMS for administrator, when admin go to url e.g: site.com/admin . ...
0
votes
1answer
199 views

Custom Membership Provider with Entity Framework

I have a MVC web application that I am using my own membership provider. I have implemented the Entity Framework with POCO’s, repositories, and a unit of work to both the MVC app and the Custom ...
1
vote
1answer
138 views

Get user group in Membership.ValidateUser

I'm using Form Authentication and Membership provider. When I call Membership.ValidateUser(logon.UserName,logon.Password), it's only returning a boolean which indicates whether this user is valid. But ...
0
votes
1answer
327 views

Multi-tenancy with MVC3 and Custom Membership Provider

I have a question regarding Multi-tenancy (with MVC3, EF) and a custom SQL Membership provider. I have custom User and Roles membership classes created, since I have to include the userId in my ...
0
votes
1answer
118 views

Membership Custom Provider Fails Invocation in web.config

hi guys here is my app config <membership defaultProvider="TheTWMembershipProvider" userIsOnlineTimeWindow="20"> <providers> <clear/> <add ...
0
votes
1answer
161 views

Membership provider Advice [closed]

I am in the process of implementing security into my Visual basic ASP.net MVC 4 application and have been doing a lot of research into the security available in order to decide which is most suitable ...
0
votes
2answers
1k views

How to get ExtendedMembershipProvider to work with ASP.NET MVC 4 and Custom Membership Provider?

I have got a custom membership provider to work with ASP.NET MVC 4 but when i whant to use the OAuth logins like Facebook etc I'm getting an error: To call this method, the "Membership.Provider" ...
0
votes
1answer
364 views

Need help in implementing Repository Pattern with Custom Membership ASP.NET MVC

I am implementing Repository Pattern in one of my project based on ASP.NET MVC4 and N-Tier Architecture. I am little confused as how to implement Custom Membership with Repository Pattern. Here are ...
1
vote
1answer
271 views

ASP.NET MVC 4 and dynamically changing membership connection string with CodeFirst

I am working on creating a MVC4 multi-tenant site that uses seperate DBs for each tenant and have been trying to get the membership piece to work for each tenant without any luck. For some reason ...
0
votes
0answers
52 views

Using SqlMembershipProvider for authontication with a service

Hello fellow developers, good evening, i am currently working on a database solution which should have both access throught Web and Phone App. i built my Application as a class: class MyApp { ...
3
votes
1answer
410 views

WCF RIA Services Form Authentication ServiceContext.User.Identity.Name Empty

We are using WCF Ria Services with silverlight 5 project.For authentication we are using Custom membership provider.WCF Ria Service in RIA Services class library. Client side authentication running.We ...
0
votes
1answer
188 views

Call custom MembershipProvider without casting Membership.Provider

Is there a way to call the custom MembershipProvider I have implemented in code without having to cast the Membership class to my custom provider every time? For example, I setup my web.config like ...
2
votes
1answer
608 views

Orchard cms - custom login module with users in another database

Im evaluating orchard cms for my employer and just wanted to ask a question about login and membership. Our users and their roles are in another database which are exposed via an API and i would need ...
0
votes
1answer
70 views

Custom membership with SQL Database?

I want to implement custom membership using SQL database.I searched alot but couldn't find any good tutorial .can anybody help to take a good start ? I am using asp.net with c#. Thanks in advance.
0
votes
2answers
535 views

Asp .net MVC3 user registration

I am teaching myself Asp .net MVC 3. I have reached a stage where I need to now incorporate user account system. I started with standard Asp .net MVC 3 membership provider and want to stick with it ...
0
votes
2answers
180 views

ASP.NET Mermbership.cs file Template

Is there any ASP.NET Membership file Template available ? if it is not available how to write Custom Membership file from the Scratch... ? Thanks in Adv.
0
votes
1answer
219 views

MVC 3 - Ninject - Membership - SQL Server Express 2008 r2

Here is my setup: I have modeled my application after the SportsStore in Pro ASP.NET MVC3 Framework book. For those that don't have the book: I have 2 projects bundled in a solution - ...
0
votes
2answers
542 views

How to inject IUserRepository into custom membership provider using Ninject?

I have DI set up in my project using Ninject. Here is an example for the UserController. private readonly IRoleRepository roleRepository; private readonly IUserRepository userRepository; public ...
0
votes
1answer
299 views

How to Implement Custom Membership and Roles in Oracle Database

How to implement Custom Membership and Roles in Oracle DB. are we need to write the overload for the Membership Function ? If yes then How ? Where is the Database Schema for Membership and roles for ...
1
vote
2answers
668 views

C# MVC 3 Register Button does not respond

Basic problem: We are currently busy developing a C# MVC3 web application, and after writing a CustomMembershipProvider and a custom RegisterModel, our Register form does not seem to be working. this ...
1
vote
2answers
581 views

Azure ACS, WIF 3.5, Asp.Net 3.5 Custom Membership Provider and IsAuthenticated

Following the steps in this guide Using Azure ACS I have a working Azure ACS service configured & authenticating via Facebook, redirecting back to a website running on my development server. On ...
2
votes
1answer
262 views

Property injection in custom membership provider using Castle

So far in reading about possibilities of injection to custom membership providers, I've found two possible ways to do it: One is the following: ...
0
votes
2answers
2k views

How to use forms authentication without login control?

How to use forms authentication without login control.I don't want to use asp.net login control in my site.But i have to implement forms authentication and to validate users in my database.
0
votes
1answer
390 views

Where can HttpContext.User be set?

Environment: MVC3 SqlMemberShipProvider I added an empty public void Application_AuthenticateRequest(object sender, EventArgs e) {} in the MvcApplication class in Global.asax.cs and put a ...
2
votes
2answers
1k views

How to get RoleProvider to Work?

This is a MVC 3 project. Just for testing, I have public class MyRoleProvider : RoleProvider { public override string[] GetRolesForUser(string username) { return new string[] { "0", ...
1
vote
1answer
266 views

How do I use the built-in password encryption in the MembershipProvider?

I am writing a custom MembershipProvider. Of course I want to encrypt the password the user creates. I presume that .NET has something that encrypts passwords. What is it and how do I use it? What ...
2
votes
1answer
359 views

ASP.NET MVC 3 custom membership provider with UnitOfWork pattern

I'm having problems to implement CodeFirstMembership provider using a unitofwork pattern. When I tried to inject unitofwork to the constructor of custom MemberShipProvider class, always received the ...
0
votes
2answers
307 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
1k 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
910 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 ...
3
votes
1answer
515 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 2 3