Therk
Therk

Reputation: 391

use https on asp.net application running on localhost

I've created an asp.net web application with a web form called "Main.aspx" in it. I'm trying to run the application over https. Since I have no experiences with SSL, IIS etc. I googled how to achieve this but every solution didn't work for me.

I enabled SSL using the following steps: Enable SSL

My application is now running on https://localhost:59917/.

enter image description here

But if I start my application I get a Firefox error message: "Secure connection failed". So I followed the steps from Scott Gu's Blog Post but it didn't work neither.

Does anyone have experiences in SSL and ASP.net web applications and can help me out?

Upvotes: 5

Views: 6212

Answers (1)

Aboc
Aboc

Reputation: 237

If you followed the instructions, you should have configured your website on the port 443.

You should configure the binding on port 59917

Upvotes: 2

Related Questions