vote up 9 vote down star
6

How do I go about using HTTPS for some of the pages in my ASP.NET MVC based site?

Steve Sanderson has a pretty good tutorial on how to do this in a DRY way on Preview 4 at:

http://blog.codeville.net/2008/08/05/adding-httpsssl-support-to-aspnet-mvc-routing/

Is there a better / updated way with Preview 5?,

flag

5 Answers

vote up 5 vote down check

MVCFutures has a 'RequireSSL' attribute.

(thanks Adam for pointing that out in your updated blogpost)

Just apply it to your action method, with 'Redirect=true' if you want an http:// request to automatically become https:// :

    [RequireSsl(Redirect = true)]

See also: ASP.NET MVC RequireHttps in Production Only

link|flag
Would I have to subclass it in order to handle localhost requests? – Mr Rogers Nov 5 at 2:46
one way is to create a certificate for your local machine and use that. i think to completely disable it for localhost you would indeed need to subclass or duplicate the code. not sure what the recommended approach is – Simon Nov 5 at 7:46
Looks like it's sealed so I'd need to dupe the code. Bummer. The certificate for the local machine would only work in IIS though right, not the dev web server. – Mr Rogers Nov 5 at 16:55
@mr rogers - take a look at this : stackoverflow.com/questions/1639707/… – Simon Nov 6 at 5:54
vote up 2 vote down

Some ActionLink extensions: http://www.squaredroot.com/post/2008/06/11/MVC-and-SSL.aspx Or an controller action attribute that redirects to https:// http://forums.asp.net/p/1260198/2358380.aspx#2358380

link|flag
vote up 1 vote down

Here's a blog post by Pablo M. Cibrano from January 2009 that gathers up a couple of techniques including a HttpModule and extension methods.

link|flag
vote up 1 vote down

Here's a blog post by Adam Salvo that uses an ActionFilter.

link|flag
make sure you see the follow post he wrote himself : blog.salvoz.com/2009/04/… – Simon Jul 12 at 19:49
vote up 1 vote down

Here's a recent post from Dan Wahlin on this:

http://weblogs.asp.net/dwahlin/archive/2009/08/25/requiring-ssl-for-asp-net-mvc-controllers.aspx

He uses an ActionFilter Attribute.

link|flag
This looks to be the best way at the moment. – Bob Oct 11 at 4:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.