vote up 4 vote down star

I want to redirect users, after HTTPS login, to the HTTP pages on the site. Using HTTPS for the whole site is not going to happen.

What I have so far is the following:

  1. User posts the login form to the secure site
  2. The secure server validates the credentials
  3. The secure server sends a 302 redirect to the client

This works, except on my machine in IE6 the user gets an error message because the default is to warn when exiting a secure page. These errors are a usability killer for me and thus a showstopper. I changed it so that step 3 is

  • Server sends html code with a meta refresh

But this is very slow; even on my local machine it's noticeably slower than doing the 302 redirect.

Is there a better way to accomplish the goal of a hassle-free redirection on standard settings that people use? IE6 represents 20%-25% of our traffic. Also, does anyone have any good info about which browsers will warn and which won't warn for the 302 redirect? I am considering black-listing IE6 so that only it gets the slow meta refresh and everyone else gets the fast 302.

flag

If you post a form to a https site, isn't the response therefore coming from a https site, which puts the user on https going forward? – matt b Mar 16 at 19:19
@matt: the response comes from the https server, but that response contains instructions to redirect. Certain redirection modes warn, others do not. Warnings are scary and, IMO, pointless (since not all page redirection modes warn). – Mr. Shiny and New Mar 16 at 19:23
I misunderstood your question. I thought you were using the 302 redirect to redirect from http --> https. – matt b Mar 16 at 19:25

2 Answers

vote up 2 vote down check

I am considering black-listing IE6 so that only it gets the slow meta refresh and everyone else gets the fast 302.

I would do something like that. Also include a plain HTML link in the body for accessibility.

Note that some other browsers do give a similar warning about leaving an HTTPS site, but in their case it is accompanied by a (generally pre-ticked) “don't ask me again” button. So by the time they get to your site they will almost certainly have told that warning to disappear. This doesn't make the warning less pointless, but at least it alleviates the problem.

  1. The secure server sends a 302 redirect to the client

You shouldn't 302 in response to POST. A theoretical browser that took the HTTP RFC seriously might respond to that by re-POSTing the form to the new URL. (Which, ironically, would make IE6's warning about information “being retransmitted to a nonsecure site” less misleading.) Instead use “303 See other”.

link|flag
The 302 response is actually sent by the J2EE framework. I just use response.sendRedirect(url). – Mr. Shiny and New Mar 17 at 13:07
It is unfortunate that sendRedirect doesn't provide access to the other 30x status codes, but you can do it manually: response.setStatus(HttpServletResponse.SC_SEE_OTHER); response.setHeader("Location", "..."); – bobince Mar 18 at 2:32
@bobnice: doing it manually would work but in practice I avoid doing that since we also use other side-effects of the sendRedirect method, namely url-rewriting. – Mr. Shiny and New Apr 13 at 17:10
vote up 1 vote down

I don't think there's any other way. That error message is for the user's benefit, and is present in IE 7 and Firefox 3 now as well. The only way that I know of to prevent it is to add your site as trusted within the browser.

Update: Oh, so it's not the mixed content error. I know which one you mean, though I still don't think you can disable the error. Generally, security errors are for the users benefit to protect them from potentially dangerous sites, and as such, cannot be disable by the (potentially unsafe) website itself.

link|flag
1  
I am not seeing the message in either FF3 or IE7. Only IE6. – Mr. Shiny and New Mar 16 at 19:40
The thing is, this message doesn't always trigger. Is using 302 redirection somehow more secure than using meta refreshes? Probably not, which is why the newer browsers don't show the message. – Mr. Shiny and New Mar 16 at 21:03

Your Answer

Get an OpenID
or

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