Stephen,

You can either use the web.xml modification route, or just hack the top of 
a JSP page with an if statement and a forward, i.e.:

<%
  // Avoid recursive redirection
  String redirect = "https://blah.com";;
  if (request.getScheme().equals("http")
     && request.getRequestURL().indexOf(redirect)==-1) {
    response.sendRedirect(redirect);
    return;
  }
%>

(That's really not a very nice solution.)

One thing to check out is attachments in IE over SSL - IE has a few bugs 
downloading a file if specific headers have not been set.


John


Java System Solutions : http://www.javasystemsolutions.com

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org

Reply via email to