I created an MVC web application that was using a MSSQL database store for username and password. This is not the out of the box solution that comes in the Visual Studio template. I just attached a new SSL certificate to the application, and I also added the [RequiresHttps] attribute to the neccessary controllers. Now when I go to the website it is asking me to login, but the login that I use to use that is store in the MSSQL database is not the same that it is looking for.
Can someone please inform as to what I need to look at searching for on Google in order to find a solution for a username and password store for the new SSL connection.
EDIT
None of my logs are getting into the database. I am requesting a URL of https://www.example.com/User/SignIn, which gets redirected to https://www.example.com/User/SignIn?ReturnUrl=%2fUser%2fSignIn
So, to me it does not look to be getting to my Action, but it does. Not sure how this is going.
I had to remove the [RequiredHttps] attribute because I am not looking for a two-way certificate communication.