redirect http to https???

2003-05-28 Thread tomcat
Hi I implemented SSL . If i brows particular http, it shold redirect to https page. How to do this.How to redirect http page to https page?? Regards Tomcat _ Any Opinions, explicit or implied, are solely those of the author and

Redirect HTTP to HTTPS?

2003-06-27 Thread Latesha Williams
How do you redirect HTTP to HTTPS in a Tomcat Standalone configuration (no Apache WS)? This configuration serves static web content on port 80 and JSP/Java Servlets on port 8080. I would like requests coming in on port 80 to be routed to HTTPS automatically. Although the HTTP connectors are

Redirect HTTP to HTTPS

2005-08-01 Thread Faine, Mark
I know I can redirect HTTP to HTTPS by adding: CONFIDENTIAL to my web.xml but the problem is that this does not redirect when someone just goes to a directory path. I would like http://servername/ to redirect to https://servername/ Thanks

Re: redirect http to https???

2003-05-28 Thread Tim Funk
http://tomcatfaq.sourceforge.net/security.html -Tim tomcat wrote: Hi I implemented SSL . If i brows particular http, it shold redirect to https page. How to do this.How to redirect http page to https page?? Regards Tomcat - T

RE: Redirect HTTP to HTTPS?

2003-06-27 Thread Shapira, Yoav
gt;From: Latesha Williams [mailto:[EMAIL PROTECTED] >Sent: Friday, June 27, 2003 11:26 AM >To: Tomcat Users List >Subject: Redirect HTTP to HTTPS? >Importance: High > >How do you redirect HTTP to HTTPS in a Tomcat Standalone configuration (no >Apache WS)? This configuration serves s

Re: Redirect HTTP to HTTPS

2005-08-01 Thread Martin Bromley
Just create a filter (mapping it to /* for example so it gets applied to all requests), test for a secure connection with request.isSecure(), and if it isn't, redirect using response.sendRedirect. Martin Faine, Mark wrote: I know I can redirect HTTP to HTTPS by a

automatically redirect http to https in tomcat

2003-02-11 Thread pqin
Is it possible to automatically redirect any http request to https in an Apache + Tomcat environment? For example, If I enter http://my.domain.com/mycontext , I would be automatically redirected to https://my.domain.com/mycontext? Regards, PQ "This

Re: automatically redirect http to https in tomcat

2003-02-11 Thread Jake Robb
gt; To: <[EMAIL PROTECTED]> Sent: Tuesday, February 11, 2003 4:11 PM Subject: automatically redirect http to https in tomcat > Is it possible to automatically redirect any http request to https in an > Apache + Tomcat environment? For example, If I enter > http://my.domain.com/mycontext

RE: automatically redirect http to https in tomcat

2003-02-11 Thread Mohamed Nasser
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tue, February 11, 2003 4:12 PM To: [EMAIL PROTECTED] Subject: automatically redirect http to https in tomcat Is it possible to automatically redirect any http request to https in an Apache + Tomcat environment? For example, If I enter

RE: automatically redirect http to https in tomcat

2003-02-11 Thread pqin
Original Message- From: Mohamed Nasser [mailto:[EMAIL PROTECTED]] Sent: February 11, 2003 4:23 PM To: Tomcat Users List Subject: RE: automatically redirect http to https in tomcat In the httpd.conf under the virtual host listening to port 80 have the line RedirectPermanent / https://my.domain.com

RE: automatically redirect http to https in tomcat

2003-02-11 Thread SSchaubach
PQ, Are you using struts? if so I may be able to help you. Best, Stephen Schaubach -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 1:12 PM To: [EMAIL PROTECTED] Subject: automatically redirect http to https in tomcat Importance

RE: automatically redirect http to https in tomcat

2003-02-11 Thread pqin
quot; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: February 11, 2003 5:13 PM To: [EMAIL PROTECTED] Subject: RE: automatically redirect http to https in tomcat PQ, Are you using struts? if so I may be able to help you. Best, Stephen Schaubach -Origin

RE: automatically redirect http to https in tomcat

2003-02-11 Thread SSchaubach
: automatically redirect http to https in tomcat Importance: Low Yes, I use struts. It used to automatically redirect http request to https with https setup in ssl.conf. After I upgraded to b3, 4.1.18, 2.0.44, http is http and https is https. Regards, PQ "This Guy Thinks He Knows Everything&q

Re: automatically redirect http to https in tomcat

2003-02-11 Thread Steinar Bang
> [EMAIL PROTECTED]: > Yes, I use struts. It used to automatically redirect http request to > https with https setup in ssl.conf. After I upgraded to b3, 4.1.18, > 2.0.44, http is http and https is https. What I've done in Struts, is to subclass ActionServlet, replace the doGet() and doPost()

RE: automatically redirect http to https in tomcat

2003-02-11 Thread Oscar Carrillo
ks He Knows Everything" > "This Guy Thinks He Knows What He Is Doing" > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: February 11, 2003 5:13 PM > To: [EMAIL PROTECTED] > Subject: RE: automatically redirect http to

RE: automatically redirect http to https in tomcat

2003-02-11 Thread Oscar Carrillo
> > > "This Guy Thinks He Knows Everything" > > "This Guy Thinks He Knows What He Is Doing" > > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > Sent: February 11, 2003 5:13 PM > > To: [EMAIL PRO

RE: automatically redirect http to https in tomcat

2003-02-11 Thread Jacob Kjome
ECTED]] Sent: February 11, 2003 5:13 PM To: [EMAIL PROTECTED] Subject: RE: automatically redirect http to https in tomcat PQ, Are you using struts? if so I may be able to help you. Best, Stephen Schaubach -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesda

Re: automatically redirect http to https in tomcat

2003-02-12 Thread Martin Jacobson
[EMAIL PROTECTED] wrote: Is it possible to automatically redirect any http request to https in an Apache + Tomcat environment? For example, If I enter http://my.domain.com/mycontext , I would be automatically redirected to https://my.domain.com/mycontext? Yes, I

Re: How to redirect http to https automatically?

2004-10-14 Thread David Wall
https, so if you try to get it via http, then the redirect stuff specifed in your server.xml will be applied. David - Original Message - From: "Won Sim" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 13, 2004 8:13 AM Subject: How to redirect ht

Re: How to redirect http to https automatically?

2004-10-14 Thread Antony Paul
he webapp will require https, so if > you try to get it via http, then the redirect stuff specifed in your > server.xml will be applied. > > David > > > > - Original Message - > From: "Won Sim" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]&

Re: How to redirect http to https automatically?

2004-10-15 Thread David Wall
IL PROTECTED]> Sent: Thursday, October 14, 2004 9:42 PM Subject: Re: How to redirect http to https automatically? > Is it possible to switch from https to http using this kind of configuration ? > I tried with NONE for user constraint but it still remains in https. > > rgds >

Re: How to redirect http to https automatically?

2004-10-15 Thread raiden
vacy. > > David > > > - Original Message - > From: "Antony Paul" <[EMAIL PROTECTED]> > To: "Tomcat Users List" <[EMAIL PROTECTED]>; "David Wall" > <[EMAIL PROTECTED]> > Sent: Thursday, October 14, 2004 9:42 PM >

AW: How to redirect http to https automatically?

2004-10-16 Thread Steffen Heil
Hi > Actually, I'm a big advocate against staying in HTTPS, because of the overhead. However, this is a problem with Tomcat, because in the 4.x and 5.x lines it was decided by someone that if a session started in HTTPS it is only valid in HTTPS (basically, the session cookie is turned into a secu

Re: AW: How to redirect http to https automatically?

2004-10-18 Thread raiden
Hello, I believe all but your third example is correct. I am pretty sure that a cookie set for www.domaina.com will be sent to that same domain if it's in http or https. However, if the cookie is marked as secure, it will only be sent under https. This is what has caused the problem. I still d