RE: Changing URL

2003-07-17 Thread Ruchi Dayal
/ Neither works. Which means that I am unable to access xyz by just typing http://localhost Thanks, Ruchi -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 4:44 PM To: Tomcat Users List Subject: Re: Changing URL 304 means its cached. Do you

Re: Changing URL

2003-07-17 Thread John Turner
[mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 4:44 PM To: Tomcat Users List Subject: Re: Changing URL 304 means its cached. Do you have your browser's cache turned off? You can't test accurately unless you do. You should see entries in mod_jk.log for JSP and servlet requests

Changing URL

2003-07-16 Thread Ruchi Dayal
Hello: I finally succeeded in using Tomcat 4.1 behind Apache 1.3.27 on Win32 platform. Now I intend to do the following: I have an application, xyz in TOMCAT_HOME/webapps/xyz. I can see this from Apache when I type: http://localhost/xyz Firstly, does this mean that my HTMLs are being served

Re: Changing URL

2003-07-16 Thread John Turner
On Wed, 16 Jul 2003 16:04:13 -0400, Ruchi Dayal [EMAIL PROTECTED] wrote: Hello: I finally succeeded in using Tomcat 4.1 behind Apache 1.3.27 on Win32 platform. Congratulations! Now I intend to do the following: I have an application, xyz in TOMCAT_HOME/webapps/xyz. I can see this from Apache

Re: Changing URL

2003-07-16 Thread Nicolas
Ruchi Dayal wrote: Hello: I finally succeeded in using Tomcat 4.1 behind Apache 1.3.27 on Win32 platform. Now I intend to do the following: I have an application, xyz in TOMCAT_HOME/webapps/xyz. I can see this from Apache when I type: http://localhost/xyz Firstly, does this mean that my HTMLs

Re: Changing URL

2003-07-16 Thread John Turner
On Wed, 16 Jul 2003 22:14:34 +, Nicolas [EMAIL PROTECTED] wrote: Firstly, does this mean that my HTMLs are being served by Apache and JSPs by Tomcat? not really, this means that if u type /xyz the /xyz folder of tomcat is being accessed with all its servlets and static files That's

RE: Changing URL

2003-07-16 Thread Ruchi Dayal
-Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 4:12 PM To: Tomcat Users List Subject: Re: Changing URL On Wed, 16 Jul 2003 16:04:13 -0400, Ruchi Dayal [EMAIL PROTECTED] wrote: Hello: I finally succeeded in using Tomcat 4.1 behind Apache 1.3.27

Re: Changing URL

2003-07-16 Thread John Turner
: Changing URL On Wed, 16 Jul 2003 16:04:13 -0400, Ruchi Dayal [EMAIL PROTECTED] wrote: Hello: I finally succeeded in using Tomcat 4.1 behind Apache 1.3.27 on Win32 platform. Congratulations! Now I intend to do the following: I have an application, xyz in TOMCAT_HOME/webapps/xyz. I can see

Changing URL

2003-01-23 Thread Ravindra K. Bhat
Hi: How can I replace my www.domain.com:443 with www.domain.com but still use the same :443 port? Thanks Ravi -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Changing URL

2003-01-23 Thread Turner, John
? Use https://www.domain.com; instead of http://www.domain.com;. John -Original Message- From: Ravindra K. Bhat [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 3:47 PM To: Ravindra K. Bhat Cc: [EMAIL PROTECTED] Subject: Changing URL Hi: How can I replace

Re: Changing URL

2003-01-23 Thread Lajos Moczar
If you call https://www.domain.com you don't have to supply 443 - it is understood. Otherwise, you can't do that (except by some rewrite). And besides, why? Lajos Ravindra K. Bhat wrote: Hi: How can I replace my www.domain.com:443 with www.domain.com but still use the same :443 port? Thanks

Re: Changing URL

2003-01-23 Thread Jakarta
or use a port forward (it's easy with iptables) - Original Message - From: Lajos Moczar [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 5:50 PM Subject: Re: Changing URL If you call https://www.domain.com you don't have to supply 443

Re: Changing URL

2003-01-23 Thread Lajos Moczar
Message - From: Lajos Moczar [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 5:50 PM Subject: Re: Changing URL If you call https://www.domain.com you don't have to supply 443 - it is understood. Otherwise, you can't do that (except by some rewrite

Tomcat SSL - Changing URL https to http

2002-10-10 Thread Frédéric LE MAISTRE
I've secure my website with Apache, using the SSL connector. But I have a problem : Imagine I have a page with confidential data to send. This page has the following URL : https://localhost:8443/importantData.html We only have to change manually the URL with

AW: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Ralph Einfeldt
-constraint -Ursprüngliche Nachricht- Von: Frédéric LE MAISTRE [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 10. Oktober 2002 10:04 An: [EMAIL PROTECTED] Betreff: Tomcat SSL - Changing URL https to http This page has the following URL : https://localhost:8443/importantData.html

AW: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Ralph Einfeldt
Forgot to mention that this belongs in web.xml. -Ursprüngliche Nachricht- Von: Ralph Einfeldt Gesendet: Donnerstag, 10. Oktober 2002 10:29 An: Tomcat Users List Betreff: AW: Tomcat SSL - Changing URL https to http security-constraint web-resource-collection web-resource

Re: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Frédéric LE MAISTRE
thanks very much. does CONFIDENTIAL a keyword? - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, October 10, 2002 10:34 AM Subject: AW: Tomcat SSL - Changing URL https to http Forgot to mention that this belongs

AW: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Ralph Einfeldt
/servlet/download.html#specs -Ursprüngliche Nachricht- Von: Frédéric LE MAISTRE [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 10. Oktober 2002 10:50 An: Tomcat Users List Betreff: Re: Tomcat SSL - Changing URL https to http thanks very much. does CONFIDENTIAL a keyword

RE: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Turner, John
-Original Message- From: Frédéric LE MAISTRE [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 4:04 AM To: [EMAIL PROTECTED] Subject: Tomcat SSL - Changing URL https to http I've secure my website with Apache, using the SSL connector. But I have a problem : Imagine I have a page

Re: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Frédéric LE MAISTRE
thanks a lot - Original Message - From: Turner, John [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, October 10, 2002 2:57 PM Subject: RE: Tomcat SSL - Changing URL https to http Disable the connector on 8080 in server.xml if you don't want requests going