Guys, Looking at the tomcat-apache how to : http://jakarta.apache.org/tomcat/tomcat-3.2-doc/tomcat-apache-howto.html
Near the bottom it says: mod_ssl - getScheme() always returns HTTP! ------------------------------------------------------ The protocol used by mod_jserv can't identify whether a page was requested via HTTP or HTTPS. Yes, Apache/JServ did it, but that was a hack (just checked for requests on port 443). The solution is either to check for port 443 yourself, or to upgrade to mod_jk and the ajpv13 protocol. Another symptom of this is finding requests redirected to http://yourserver.com:443 rather than https://yourserver.com/. So in short - you need to upgrade from webapp to mod_jk. Gary ----- Original Message ----- From: "Ralph Einfeldt" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 7:29 AM Subject: AW: Tomcat, webapp, SSL, and index files? It looks like the module that is responsible for the welcome file has a bug or mod_webapp provides this module with wrong informations so it constructs a wrong url for the redirect to the welcome file. > -----Urspr�ngliche Nachricht----- > Von: Barris, Wes (LI, Uni of Queensland) [mailto:[EMAIL PROTECTED]] > Gesendet: Mittwoch, 3. April 2002 02:26 > An: Tomcat User (E-mail) > Betreff: Tomcat, webapp, SSL, and index files? <snip/> > Reason: You're speaking plain HTTP to an SSL-enabled server port. > Instead use the HTTPS scheme to access this URL, please. > > Hint: https://www.myserver.com:443/ <snip/> -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]> -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
