Questions tagged [membershipreboot]

MembershipReboot is a user identity management and authentication library. It has nothing to do with the ASP.NET Membership Provider, but was inspired by it due to frustrations with the built-in ASP.NET Membership system.

https://github.com/brockallen/BrockAllen.MembershipReboot

47 questions
4
votes
1 answer

IdentityServer3 - which for ActiveDirectory: MembershipReboot / AspNetIdentity / UserService

I hope the following question makes sense: I manage my users in ActiveDirectory. I authenticate them via IdentityServer3. I authorize the APIs via the AD groups that the user is in (acting as security roles). How should I set up…
4
votes
2 answers

Membership reboot replace Ninject with Simple Injector

I need add membership reboot (RavenDb) into the project that use IOC Simple Injector Ninject implementation var config =…
3
votes
1 answer

Missing Claims and Identity Info with IdentityServer v3

I have IdentityServer with Membership Reboot and IdentityManager running on a remote server, I've used the Admin UI of IdentityManager to setup a user, and add roles & claims to said user. I'm developing a WebApi/SPA project that will use the…
3
votes
1 answer

Resolving IOwinContext in MVC5 application using Autofac

I have trouble using MembershipReboot with the new ASP MVC5 template and Autofac. I have used the default MVC5 template to set up the site and then tried to wire up the MembershipReboot framework as a replacement for the ASP Identity framework that…
2
votes
1 answer

How to send user profile fields such as First Name and Last Name with IdentityManger/MembershipReboot?

Is there any way to get the First Name and Last Name and such fields that show up in IdentityManager while using Membership Reboot as the user/claims store to come down via claims or some other method to be used in IDS clients? I have had to…
Pugz
  • 939
  • 3
  • 11
  • 25
2
votes
1 answer

.NET Entity Framework "remembering" database name that does not exist

I'm using Brock Allen's awesome MembershipReboot library to provide identity services in my .NET application. Per Getting Started with MembershipReboot, MembershipReboot uses Entity Framework (EF) for it's data access. The sample apps contain a SQL…
Matthew
  • 947
  • 2
  • 13
  • 20
2
votes
0 answers

Where to place MembershipReboot in multiproject solution

In a previous project I used BrockAllen.MembershipReboot as my membership service provider, however, at the time there was no NugetPackage available so I copied the code and moved things around a little bit. I had a solution that looked something…
Ray Suelzer
  • 4,026
  • 5
  • 39
  • 55
2
votes
2 answers

ASP.NET Authorize Attribute Not Working

I've removed the Identity authorisation from a MVC 5 app and started using Brock Allen's Membership Reboot but for some reason I can now access actions with the 'Authorize' attribute even when I haven't signed in? Can someone please tell me what I…
user3261445
  • 51
  • 1
  • 4
1
vote
1 answer

How to restart Partial Login mechanism in Identity Server 3

Hi everyone Summary: Our project that we develop uses Identity Server 3 in conjunction with MembershipReboot. We have next login workflow: Login page (email, password) Some custom User Service has override PostAuthenticateLocalAsync (layer after…
1
vote
0 answers

authentication using identity server with existing database of membershipreboot

I have a Web application where I am using MembershipReboot to implement authentication. Now I want to use Identity server 4 (with MVC core)to secure this application and an API. I found that We can customize IResourceownerpasswordvalidator…
1
vote
2 answers

MembershipReboot change Username, Email, and Reset Password

We are using identityserver3 and membership reboot for authentication in our application. We now have a requirement to change the UserName Email and Reset Users Passwords form an Admin area in our application. I have seen Identity Manager but that…
Justin Smead
  • 211
  • 1
  • 3
  • 10
1
vote
0 answers

Using autofac with a CustomUser within MembershipReboot

I am trying to configure MRB with Autofac and a custom user class found on the sample site e.g public class CustomUser : RelationalUserAccount { [Display(Name="First Name")] public virtual string FirstName { get; set; } [Display(Name =…
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
1
vote
1 answer

Membership Reboot create/edit new tenant

In MembershipReboot Documentation described ability use few tenants in app. But there are no examples how to implement crud for tenants using ravendb. Please share link or provide…
MaxD
  • 254
  • 1
  • 3
  • 14
1
vote
2 answers

How should I Register a custom UserAccount with MembershipReboot.Owin?

Has any one made a multitenant example with a custom useraccount using membershipreboot.owin ? I Have a hard time figuring out how I should configure the membership middleware when using a custom account. Its not covered by the default examples.…
1
vote
1 answer

Using Autofac with webapi and mvc5.1 not working for webapi

I have a project using both mvc and webapi. It's a Membership Reboot application so I have taken the example single application project and have slightly modified it to suit. The DI works ok for controllers however when I try to call a webapi…
Diver Dan
  • 9,953
  • 22
  • 95
  • 166
1
2 3 4