I had a similar question here but I need it solved in a different way because you are not supposed to load SSL certs on every server (which is what we did in that question.)
If you have this in MVC3 and WWF resolves the SSL prior to delivering the request, how do you force certain Actions to be SSL?
[RequireHttps]
public ActionResult Login()
{
return View();
}
This will switch from http to https, which results in a "The page isn't redirecting properly." Any suggestions?