Redirect HTTP to HTTPS

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

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 adding: user-data

Re: Moving from http to https doesnt expire session

2005-05-04 Thread Bob Feretich
the shopping cart contents just as it was time to pay. Also, maintaining the session from http to https does not create a security hazard. Tomcat does not permit a session to be maintained across a https to http transition for security reasons. To force a session to expire when moving from http

Re: Moving from http to https doesnt expire session

2005-05-04 Thread Fabian Pena
Thank Bob. Yes, I think an invalidate and then a request.getSession(true) doesn't work. Do you know if there are some other options, or a tomcat setting to do this? The only solution that i found at this moment, was set a diferent domain name for http and https. As you see, me english

Moving from http to https doesnt expire session

2005-05-02 Thread Fabian Pena
hi all I have a simple question, at least I think that. I am developing an applicatin that contains confidential information, and I'm having a simple problem. when a user move from http to https de session doesnt expire, the jsessionid is the same. I want generate a new session and of course

Re: Redirect from http:// to https://

2005-03-09 Thread Peter Johnson
), Sanjeev Srivastava [EMAIL PROTECTED] wrote: Hi All!, Can anone tell me how can I redirect http:// to https:// . I want as soon as the user type http://abc.com it will go to https://abc.com (SSL Config). Please help.. Regards, Sanjeev Send instant messages to your online friends http

Re: Redirect from http:// to https://

2005-03-09 Thread Sanjeev Srivastava
in Connector element in server.xml for this to work. In Apache use mod_rewrite. On Tue, 8 Mar 2005 23:27:54 + (GMT), Sanjeev Srivastava [EMAIL PROTECTED] wrote: Hi All!, Can anone tell me how can I redirect http:// to https:// . I want as soon as the user type http

Re: Redirect from http:// to https://

2005-03-09 Thread Sanjeev Srivastava
mod_rewrite. On Tue, 8 Mar 2005 23:27:54 + (GMT), Sanjeev Srivastava [EMAIL PROTECTED] wrote: Hi All!, Can anone tell me how can I redirect http:// to https:// . I want as soon as the user type http://abc.com it will go to https://abc.com (SSL Config). Please help

Redirect from http:// to https://

2005-03-08 Thread Sanjeev Srivastava
Hi All!, Can anone tell me how can I redirect http:// to https:// . I want as soon as the user type http://abc.com it will go to https://abc.com (SSL Config). Please help.. Regards, Sanjeev Send instant messages to your online friends http://uk.messenger.yahoo.com

Re: Redirect from http:// to https://

2005-03-08 Thread Antony Paul
!, Can anone tell me how can I redirect http:// to https:// . I want as soon as the user type http://abc.com it will go to https://abc.com (SSL Config). Please help.. Regards, Sanjeev Send instant messages to your online friends http://uk.messenger.yahoo.com

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

AW: How to redirect http to https automatically?

2004-10-16 Thread Steffen Heil
into a secure cookie only). I do not understand this. I always thought cookies where only valid for ONE domain and ONE Protocol, so the following would be pairwise different and thus cannot share a cookie: http://www.domaina.com http://www.domainb.com http://www.domaina.com http://domainb.com http

Re: How to redirect http to https automatically?

2004-10-15 Thread David Wall
I don't know the answer to that. It's unlikely, though. You could put something like Apache in the front and use URL rewriting, which can basically force any URL with a given pattern to be redirected, either forcing HTTP or HTTPS and doing the redirect only when the scheme is not what you want

Re: How to redirect http to https automatically?

2004-10-15 Thread raiden
to be that it was best to do it this way so developers don't make mistakes. In general, with other application servers, if you're switching between HTTP and HTTPS, you just have to make sure that: 1. Any page that requires privacy is in HTTPS 2. That you drop a secure cookie under HTTPS the first time

Re: How to redirect http to https automatically?

2004-10-14 Thread David Wall
, 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 http to https automatically? I set redirectPort attribute to 443

Re: How to redirect http to https automatically?

2004-10-14 Thread Antony Paul
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 Antony Paul On Thu, 14 Oct 2004 08:40:31 -0700, David Wall [EMAIL PROTECTED] wrote: This is part of the servlet specs. In your WEB-INF

RE: combine http and https

2004-06-15 Thread Mariano
- De: José Manuel Prada Sierra [mailto:[EMAIL PROTECTED] Enviado el: lunes, 14 de junio de 2004 19:20 Para: [EMAIL PROTECTED] Asunto: combine http and https Hi mariano. First of all sorry by send my question to your private email, and sorry to all of tomcat list users. I have done all you write

RE: combined http and https

2004-06-14 Thread Mariano
to Tomcat list address. Mariano López -Mensaje original- De: José Manuel Prada Sierra [mailto:[EMAIL PROTECTED] Enviado el: viernes, 11 de junio de 2004 12:57 Para: [EMAIL PROTECTED] Asunto: RE: combined http and https Hi Mariano. This is my web.xml file: ?xml version=1.0 encoding=ISO-8859

combine http and https

2004-06-14 Thread José Manuel Prada Sierra
Hi mariano. First of all sorry by send my question to your private email, and sorry to all of tomcat list users. I have done all you write in your message. I have j2sdk1.4.1 and j2re1.4.2_04 and it isn't necessary download jsse. I have create the certificate like you write above, with de

Re: Strange behavious with session creation on http and https

2004-06-08 Thread John Sidney-Woollett
Ismael Blesa Part said: I have set two connectors http and https. I have my webapp that is served by these two connectors. [snip] However, If I connect first to https and then I change to http, I will have two sessions, one for https and the other one to http. I believe that this is normal

Re: Strange behavious with session creation on http and https

2004-06-08 Thread Ismael Blesa Part
, that is, If you connect to http and then to https then TWO DIFFERENT sessions are created. But I have not found how to do this. My fear is that on different application servers the behaviour is different. Ismael John Sidney-Woollett wrote: Ismael Blesa Part said: I have set two connectors http

Re: Strange behavious with session creation on http and https

2004-06-08 Thread John Sidney-Woollett
. If this is the behaviour that you want, then you only have to worry about the case when the user goes from http to https (because you want a new session instead of the old one). One way to do this would be to record the type of connection (secure or not) in the session when it is created

Strange behavious with session creation on http and https

2004-06-07 Thread Ismael Blesa Part
I have set two connectors http and https. I have my webapp that is served by these two connectors. I have discovered a strange behaviour with tomcat accessing through http and https. If I open a browser to connect to http: - tomcat creates a session - my webapp receives the request

RE: combined http and https

2004-06-01 Thread Mariano
-pattern /web-resource-collection user-data-constraint transport-guaranteeCONFIDENTIAL/transport-guarantee /user-data-constraint /security-constraint You can use wildcards in url-pattern like '*'... But i have a problem too, when i like to pass from http to https this work fines

combined http and https

2004-05-31 Thread José Manuel Prada Sierra
Hi. I have an application that it was build using tdk (turbine development kit) and postgresql. I have configured tomcat with http 8080 and https 8443 but i only use http or https and i do not know how to combined both protocols. In my application i have a section that is accesible typing

Re: http to https how ?

2004-01-14 Thread Adam Hardy
easier. -Original Message- From: ext Mufaddal Khumri [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 6:12 PM To: Tomcat Users List Subject: http to https how ? Hi, Have a page First.jsp When a user comes to http://my.domain.com/First.jsp ... I would like to redirect him or her

Re: http to https how ?

2004-01-14 Thread Keshav Sarin
Subject: http to https how ? Hi, Have a page First.jsp When a user comes to http://my.domain.com/First.jsp ... I would like to redirect him or her to https://my.domain.com/First.jsp. How do I do this on my jsp ? I tried % request.redirect(https://my.domain.com/First.jsp;) % , but i

RE: http to https how ?

2004-01-13 Thread Bruno.Melloni
a little easier. -Original Message- From: ext Mufaddal Khumri [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 6:12 PM To: Tomcat Users List Subject: http to https how ? Hi, Have a page First.jsp When a user comes to http://my.domain.com/First.jsp ... I would like to redirect him

RE: http to https how ?

2004-01-13 Thread Keshav Sarin
it to be trivial. Run some Google searches to find components, tutorials, articles, etc. Those things should make your life a little easier. -Original Message- From: ext Mufaddal Khumri [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 6:12 PM To: Tomcat Users List Subject: http

http to https how ?

2004-01-12 Thread Mufaddal Khumri
Hi, Have a page First.jsp When a user comes to http://my.domain.com/First.jsp ... I would like to redirect him or her to https://my.domain.com/First.jsp. How do I do this on my jsp ? I tried % request.redirect(https://my.domain.com/First.jsp;) % , but i get an exception saying cannot

Re:CORRECTION http to https how ?

2004-01-12 Thread Mufaddal Khumri
I meant response.redirect(path) On Jan 12, 2004, at 5:11 PM, Mufaddal Khumri wrote: Hi, Have a page First.jsp When a user comes to http://my.domain.com/First.jsp ... I would like to redirect him or her to https://my.domain.com/First.jsp. How do I do this on my jsp ? I tried %

Re: http to https how ?

2004-01-12 Thread David Evans
I do this: if (! request.isSecure()) { response.sendRedirect(https://www.yourdomain.org/your.jsp?;); } dave On Mon, 2004-01-12 at 19:11, Mufaddal Khumri wrote: Hi, Have a page First.jsp When a user comes to http://my.domain.com/First.jsp ... I would like to redirect him or her to

Re: http to https how ?

2004-01-12 Thread David Evans
sorry, forget the ? after the url, that is: if (! request.isSecure()) { response.sendRedirect(https://www.yourdomain.org/your.jsp;); } On Mon, 2004-01-12 at 23:13, David Evans wrote: I do this: if (! request.isSecure()) {

loss of session from http to https

2003-11-01 Thread Peter T. Abplanalp
hi all, i have a tomcat 4.1.27 instance fronted by an instance of apache 2.0.40, using jk2. it is a commerce site and at the point of credit card information collection goes from http to https. the first time a user goes from http to https, the session information is lost (i.e. the order

Re: loss of session from http to https

2003-11-01 Thread Bill Barker
URL rewriting doesn't work http-https (blame the Servlet spec :). However, cookie sessions should be preserved (unless it is the browser that is choosing to not send the cookie). If it was my app, the first thing that I would try is to enable the RequestDumperValve to see if the cookie

Http and https

2003-10-13 Thread Damnish
Hello I am using Tomcat 4.1.24 with Apache 2. I want to run two context on the server so that one can be accessed by http or by https. And one should get accessed only by HTTPS. Can some one tell me where should i configure this. Thanks in Advance Damnish

Re: Http and https

2003-10-13 Thread achana
be accessed by http or by https. And one should get accessed only by HTTPS. Can some one tell me where should i configure this. Thanks in Advance Damnish - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread Murray
Tomcat 4.0.6 Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The site is entered, by default using http://localhost:8080 but the members

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-14 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-12 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-11 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-09 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-09 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-09 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-09 Thread Bill Barker
This is a known problem with MSIE. See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13861 for more details. Murray [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Tomcat 4.0.6 Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There

Re: Automatic switch from http to https doesn't work for IE, does for Netscape

2003-08-09 Thread
ÔÚ 2003-08-09 16:30:00 ÄúдµÀ£º Tomcat 4.0.6of you ? Could you tell me ? Thanks~~ Windows 2000 IE 5, SP3 Netscape 7.02 I have a website which is part public, part secure. There are html entries such as lt a href=members/index.jsp gt in the public area which will jump to the secure area. The

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

RE: Redirect HTTP to HTTPS?

2003-06-27 Thread Shapira, Yoav
Howdy, A webapp must have a WEB-INF folder. It's a good idea to put a web.xml file there, even if it only has the webapp / element in it. You'd like all port 80 requests (both HTTP and HTTPS) routed to port 8443? Yoav Shapira Millennium ChemInformatics -Original Message- From

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

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

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 http://my.domain.com/mycontext , I would be automatically redirected to https://my.domain.com/mycontext? Yes, I

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 http://my.domain.com/mycontext , I would be automatically redirected to https://my.domain.com/mycontext? Regards, PQ

Re: automatically redirect http to https in tomcat

2003-02-11 Thread Jake Robb
] 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 http://my.domain.com

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
: 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 if you want it to do for specific content you may have to play with the above statement or redirect rules. The above would

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
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 This Guy Thinks He Knows What He Is Doing -Original Message

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

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
Feb 2003 [EMAIL PROTECTED] wrote: 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 This Guy Thinks He

RE: automatically redirect http to https in tomcat

2003-02-11 Thread Oscar Carrillo
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 This Guy Thinks He Knows What He Is Doing -Original Message- From

RE: automatically redirect http to https in tomcat

2003-02-11 Thread Jacob Kjome
transport-guaranteeCONFIDENTIAL/transport-guarantee /user-data-constraint /security-constraint Jake At 05:22 PM 2/11/2003 -0500, you wrote: 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

Redirecting HTTP to HTTPS

2003-02-05 Thread Sterin, Ilya
Hi, I'm having a problem with redirecting HTTP to HTTPS When a user logs in, and a session variable is created, I then want to redirect them to a secure connection for only one page, which submits private information. If I go directly to https of my server, everything work, since the key

RE: Why does encodeURL not include Session ID when switching between HTTP and HTTPS

2002-12-01 Thread Ricky Leung
: Raiden [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 01, 2002 5:10 PM To: Tomcat Users List Subject: Re: Why does encodeURL not include Session ID when switching between HTTP and HTTPS A quick addendum... is there a setting somewhere that I need to explicitly state that my server

Re: Why does encodeURL not include Session ID when switching between HTTP and HTTPS

2002-12-01 Thread Bill Barker
include Session ID when switching between HTTP and HTTPS A quick addendum... is there a setting somewhere that I need to explicitly state that my server is www.myserver.com, and therefore regardless of protocol (HTTP or HTTPS), all links at this server should be encoded with the se

RE: HTTP to HTTPS redirect

2002-11-27 Thread Joel Werginz
:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 6:19 PM To: 'Tomcat Users List' Subject: RE: HTTP to HTTPS redirect Does the form login work at all? Did you try without user-auth-constraintconfidential/...? The error message doesn't sound like a redirect problem. Rather sounds to me like

HTTP to HTTPS redirect

2002-11-26 Thread Joel Werginz
All, Been reading posts about this. Changed to HTTP port 80 and HTTPS to port 443. I am using Win2K, IE6. When I type in an http page that is supposed to redirect, I get the following: HTTP Status 500 - Configuration error: Cannot perform access control without an authenticated

shared session between http and https

2002-11-04 Thread Marc Guillemot
To share a session between http and https I've tryed to add the JSESSIONID to the url: a href=https://localhost:8443/testhttps/page2.jsp?JSESSIONID=%=request.getSe ssion().getId()%to https/a but this doesn't work in Mozilla or Opera for instance: a new session is created (in IE cookies

Re: shared session between http and https

2002-11-04 Thread Milt Epstein
On Mon, 4 Nov 2002, Marc Guillemot wrote: To share a session between http and https I've tryed to add the JSESSIONID to the url: a href=https://localhost:8443/testhttps/page2.jsp?JSESSIONID=%=request.getSe ssion().getId()%to https/a but this doesn't work in Mozilla or Opera for instance

port numbers for http and https

2002-10-14 Thread Paul French
How do you find out both port numbers (http and https) within a servlet that tomcat is listening on? I know I can use getSeverPort() to get the port number of the current request! Paul

Re: Configuring tomcat 4.1.10 for working with both http and https

2002-09-10 Thread Giovanni Cuccu
and replaced tomcat 4.0.4 in the previous version I had a site working with both http and https. Now I switched to the jk2 connector and I have this problem the jk2 connector can't works with https and http together. In the server.xml i had to put the attribute scheme to https in order to work

Configuring tomcat 4.1.10 for working with both http and https

2002-09-09 Thread Giovanni Cuccu
Hi all, I have just downloaded tomcat 4.1.10 and replaced tomcat 4.0.4 in the previous version I had a site working with both http and https. Now I switched to the jk2 connector and I have this problem the jk2 connector can't works with https and http together. In the server.xml i had

RE: Tomcat not redirecting request from HTTP to HTTPS

2002-06-13 Thread Donie Kelly
by default seen as Tomcat supports HTTP. Maybe there is an easier way?? Donie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 16:44 Subject:RE: Tomcat not redirecting request from HTTP to HTTPS I'm using tomcat standalone. I can access the /info

Tomcat not redirecting request from HTTP to HTTPS

2002-06-12 Thread Donie Kelly
Hi all Here is my server.xml and web.xml. When I request the page at /info I expected the page to requested over SSL but it returns HTTP 500 Internal server error Why is this? Web.xml servlet servlet-nameinfo/servlet-name jsp-file/onm/index.jsp/jsp-file /servlet

RE: Tomcat not redirecting request from HTTP to HTTPS

2002-06-12 Thread Turner, John
]] Sent: Wednesday, June 12, 2002 11:36 AM To: 'Tomcat Users List' Subject: Tomcat not redirecting request from HTTP to HTTPS Hi all Here is my server.xml and web.xml. When I request the page at /info I expected the page to requested over SSL but it returns HTTP 500 Internal server error Why

RE: Tomcat not redirecting request from HTTP to HTTPS

2002-06-12 Thread Donie Kelly
it anyway... Thanks Donie -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 16:43 To: 'Tomcat Users List' Subject:RE: Tomcat not redirecting request from HTTP to HTTPS An HTTP 500 Internal Server error is usually from the web server, not from

Session tracking between http to https

2002-04-19 Thread mh
I use Tomcat 4.0.3 + Apache 1.3.14 + Ajp13 connector I have two virtual host, one in http and the other in https. Two servlets are used in those virtual host. I want to do use HttpSession to maintain object information between my two servlets. I do this in my first servlet :

Re: Session tracking between http to https

2002-04-19 Thread Joel Rees
mh asked: but I can't retreive session between my two servlet. Can someone give me some code advice to perform this ? Check the archives? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Tomcat 4.0.1 http to https redirection port number problem

2002-01-03 Thread laitinenj
Hi! I'm trying to configure my tomcat 4.0.1 standalone to redirect an adress http://localhost:8080/some/thing to an address https://localhost:8443/some/thing I've made the proper changes to the server.xml and to the web.xml and actually the redirection happens. But when I print out

HTTP and HTTPS on two servers...

2001-12-20 Thread Richard S. Huntrods
Greetings! Well, the more you learn, the more you know how little you know! G Current status: I have two servers, one with Apache only and one with Tomcat only. This is for historic reasons of server load, but serves me very well. The Apache server listens only to port 80. All works well.

Re: HTTP and HTTPS on two servers...

2001-12-20 Thread Denny Chambers
like it is in the router. Is this a router or is it some kind of firewall doing port forwarding. My first suggestion would be to start looking at your logs on all three machine (router, http server, https server) and try to figure out where these https packets are going. A sniffer may help here

Re: HTTP and HTTPS on two servers...

2001-12-20 Thread Jan Labanowski
Check up some old write-ups on: http://www.ccl.net/cca/software/UNIX/apache/index.shtml But I am afraid you are out of luck. If you create a virtual host for port 443 in Apache's httpd.conf and put the connector statements there (check the URLS above), Apache will be doing SSL and Apache will

Re: HTTP and HTTPS on two servers...

2001-12-20 Thread Richard S. Huntrods
Greetings! - Me again! Problem solved. I *was* correct - https has been standardized as port 443 - so Netscape, Opera, IE - all must support it. My particular problem was the defaultrouter file in Solaris. My firewall that forwarded port 443 to the Tomcat server was on one local address, but

Re: HTTP and HTTPS on two servers...

2001-12-20 Thread Hitesh Sharma
if a connection is established or not. hitesh - Original Message - From: Richard S. Huntrods [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 21, 2001 8:54 AM Subject: HTTP and HTTPS on two servers... Greetings! Well, the more you learn, the more you know how little you know

Re: switch between http and https. how?

2001-10-26 Thread Craig R. McClanahan
On Thu, 25 Oct 2001, Taavi Tiirik wrote: Date: Thu, 25 Oct 2001 16:36:35 +0200 From: Taavi Tiirik [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: switch between http and https. how? I have Tomcat 4 running fine with both http and https protocols. I would

RE: switch between http and https. how?

2001-10-26 Thread Taavi Tiirik
I have Tomcat 4 running fine with both http and https protocols. I would like to use http for serving most of the documents and only j_security_check (form based login) should be done over https. How can I configure this? There is no way to configure this. Thanks, Craig! Now I am

RE: switch between http and https. how?

2001-10-26 Thread Craig R. McClanahan
On Fri, 26 Oct 2001, Taavi Tiirik wrote: Date: Fri, 26 Oct 2001 17:16:19 +0200 From: Taavi Tiirik [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: switch between http and https. how? I have Tomcat 4 running fine with both http and https protocols. I

switch between http and https. how?

2001-10-25 Thread Taavi Tiirik
I have Tomcat 4 running fine with both http and https protocols. I would like to use http for serving most of the documents and only j_security_check (form based login) should be done over https. How can I configure this? with best wishes, Taavi

AW: http vs https

2001-08-22 Thread Frerichs, Rene
Where can I find a SSL-How-2??? -Ursprüngliche Nachricht- Von: Curtis Dougherty [mailto:[EMAIL PROTECTED]] Gesendet am: Montag, 20. August 2001 15:11 An: '[EMAIL PROTECTED]' Betreff: RE: http vs https I followed the SSL-How-2 and Still could NOT get /examples to load via the SSL

Re: AW: http vs https

2001-08-22 Thread Craig R. McClanahan
On Wed, 22 Aug 2001, Frerichs, Rene wrote: Where can I find a SSL-How-2??? For which version of Tomcat? With 3.x it's included in the documentation that is reachable via http://localhost:8080 once you start Tomcat. For Tomcat 4, the most recent version (not yet integrated into the

RE: AW: http vs https

2001-08-22 Thread Curtis Dougherty
and it WORKS (tomcat4 b7)!!! :-) -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 11:26 AM To: [EMAIL PROTECTED] Subject: Re: AW: http vs https On Wed, 22 Aug 2001, Frerichs, Rene wrote: Where can I find a SSL-How-2

Re: http vs https

2001-08-20 Thread John Baker
On Monday 20 August 2001 03:15 am, you wrote: You must be joking. We're charging them :) It's just the twisted way they like to deploy things. their own SSL accelerator sounded like they had their own... my bad =) but of course that needs to be: https://whatever if the

RE: http vs https

2001-08-20 Thread Curtis Dougherty
I followed the SSL-How-2 and Still could NOT get /examples to load via the SSL link? Any ideas? -Original Message- From: John Baker [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 8:09 AM To: [EMAIL PROTECTED] Subject: Re: http vs https On Monday 20 August 2001 03:15 am

Re: http vs https

2001-08-20 Thread Rob S.
They are using IIS. That just about sums up the collective IQ. I hear what you're saying, but banging our heads against the wall for something they should arguably be providing... grumble =) I'm still keen to know how to get the servlet context path for a web application.. ie how to get

Re: http vs https And Windows

2001-08-20 Thread John Baker
On Monday 20 August 2001 14:11 pm, you wrote: I followed the SSL-How-2 and Still could NOT get /examples to load via the SSL link? Read it again? :-) I can happily make SSL work, but only on Linux. I have created the .keystore in Win2k, but of course, when I start tomcat the batch window

  1   2   >