0

WE've got an ASP.Net MVC application running on an internal server. We are using only Windows Authentication to allow access to portions of the site.
When we set IIS to require an SSL connection (using internally generated cert) we always get a 403 response.

If I turn off the SSL Required switch everything works correctly. But as soon as I turn it on the 403 error is back on.

  1. Is this the way it is suppose to work?
  2. Is there a workaround?
  3. Is it related to the self generated cert?

Updated Info The initial error is a 402.1 error that then gets routed to to 403.14 error message.

John S
  • 115
  • 6

1 Answers1

0

Explicitly specify https:// in the address bar, or enable some form of HTTP to HTTPS redirection, preferably through URL REWRITE MODULE for IIS

Jonathon Anderson
  • 288
  • 1
  • 3
  • 10