SSL Doesn't Stay SSL

2004-03-10 Thread John Thompson
I'm having a problem where I want users to connect to my servlet with SSL but I can't get it to maintain an SSL connection. The first page of the servlet is encrypted but when I navigate to the second and other pages, the browser no longer shows the lock icon. The URL is still the https:// URL.

Re: SSL Doesn't Stay SSL

2004-03-10 Thread Alex
] To: [EMAIL PROTECTED] Subject: SSL Doesn't Stay SSL I'm having a problem where I want users to connect to my servlet with SSL but I can't get it to maintain an SSL connection. The first page of the servlet is encrypted but when I navigate to the second and other pages, the browser no longer

RE: SSL Doesn't Stay SSL

2004-03-10 Thread AMELIN Franck
:mercredi 10 mars 2004 15:59 À : [EMAIL PROTECTED] Objet : SSL Doesn't Stay SSL I'm having a problem where I want users to connect to my servlet with SSL but I can't get it to maintain an SSL connection. The first page of the servlet is encrypted but when I navigate to the second and other

RE: SSL Doesn't Stay SSL

2004-03-10 Thread John Thompson
:mercredi 10 mars 2004 15:59 À : [EMAIL PROTECTED] Objet : SSL Doesn't Stay SSL I'm having a problem where I want users to connect to my servlet with SSL but I can't get it to maintain an SSL connection. The first page of the servlet is encrypted but when I navigate to the second

RE: SSL Doesn't Stay SSL

2004-03-10 Thread AMELIN Franck
Doesn't Stay SSL Try to force the use of https on the server : RewriteEngine on RewriteLog logs/rewrite.log RewriteCond %{SERVER_PORT} ^80$ RewriteRule ^/(.*)$ https://%{SERVER_NAME}/$1 [R,L] In you're file httpd2.conf. -Message d'origine- De :John Thompson [mailto:[EMAIL PROTECTED

RE: SSL Doesn't Stay SSL

2004-03-10 Thread John Thompson
META tag to redirects to the url /app/index.jsp Thanks for your patience and attention. -Original Message- From: AMELIN Franck [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 10, 2004 10:22 AM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: SSL Doesn't Stay SSL And something