RE: Changing URL

2003-07-17 Thread Ruchi Dayal
John:

Here's what I changed the root context of server.xml to, so that I can
use http://localhost to get to the actual location http://localhost/xyz

  Context path= docBase=xyz debug=0/
Just like you mentioned.
I also tried
Context path=/xyz docBase=xyz debug=0 /

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 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.

There's no problem with Apache serving a file from
CATALINA_HOME/xyz...it 
doesn't matter.  Don't get caught up in file location, focus on the
server 
doing the serving.  In the lines you posted, the server doing the
serving 
is Apache, the location of the file being under
CATALINA_HOME/webapps/xyz 
is irrelevant since CATALINA_HOME/webapps/xyz can easily be a valid file

location for Apache.

You'll have to clarify what you mean by changing the ROOT context
doesn't 
help.  What exactly did you do?

John

On Wed, 16 Jul 2003 16:30:09 -0400, Ruchi Dayal [EMAIL PROTECTED]
wrote:

 John:

 Changing the ROOT context doesn't help.

 Also, here's what my APACHE_HOME/logs/access.log reads like when I hit

 http://localhost/xyz

 127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/index.html 
 HTTP/1.1 304 0 127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET 
 /xyz/xyz.css HTTP/1.1 304 0
 127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/images.js
HTTP/1.1
 304 0

 And so on

 Does this indicate that html is still being retrieved from 
 CATALINA_HOME/xyz as I suspect? If yes, what should I do to make 
 Apache serve HTML and call Tomcat for JSP only?

 Thanks in advance,
 Ruchi




 -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 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 when I type:

 http://localhost/xyz

 Firstly, does this mean that my HTMLs are being served by Apache and
 JSPs by Tomcat?

 The only way to confirm this is to consult your access logs, as both 
 Tomcat and Apache can serve HTML files.  This is also dependent on 
 your mod_jk configuration (JkMount in httpd.conf).

 Secondly, is it possible to access the entire application by just the
 following:

 http://localhost

 That is, I don't want to type xyz anymore in the URL.

 See the ROOT Context example in the default server.xml.  Something 
 like:

 Context path= docBase=xyz

 Should do the trick for you assuming that your webapp is in
 CATALINA_HOME/webapps/xyz.

 John



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]





-- 
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Changing URL

2003-07-17 Thread John Turner
Well, if

Context path=/xyz docBase=xyz debug=0 /

doesn't work then you have a fairly serious problem on your hands. Unless 
you mean that the above doesn't work for http://localhost;? (it shouldn't) 
But if you are saying it doesn't work for http://localhost/xyz; then 
that's a big problem.

Can you post your server.xml file and an explanation of your directory 
structure?

John

On Thu, 17 Jul 2003 09:07:48 -0400, Ruchi Dayal [EMAIL PROTECTED] wrote:

John:

Here's what I changed the root context of server.xml to, so that I can
use http://localhost to get to the actual location http://localhost/xyz
Context path= docBase=xyz debug=0/
Just like you mentioned.
I also tried
Context path=/xyz docBase=xyz debug=0 /
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 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.

There's no problem with Apache serving a file from
CATALINA_HOME/xyz...it doesn't matter.  Don't get caught up in file 
location, focus on the
server doing the serving.  In the lines you posted, the server doing the
serving is Apache, the location of the file being under
CATALINA_HOME/webapps/xyz is irrelevant since CATALINA_HOME/webapps/xyz 
can easily be a valid file

location for Apache.

You'll have to clarify what you mean by changing the ROOT context
doesn't help.  What exactly did you do?
John

On Wed, 16 Jul 2003 16:30:09 -0400, Ruchi Dayal [EMAIL PROTECTED]
wrote:
John:

Changing the ROOT context doesn't help.

Also, here's what my APACHE_HOME/logs/access.log reads like when I hit

http://localhost/xyz

127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/index.html 
HTTP/1.1 304 0 127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET 
/xyz/xyz.css HTTP/1.1 304 0
127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/images.js
HTTP/1.1
304 0

And so on

Does this indicate that html is still being retrieved from 
CATALINA_HOME/xyz as I suspect? If yes, what should I do to make Apache 
serve HTML and call Tomcat for JSP only?

Thanks in advance,
Ruchi


-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 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 when I type:
http://localhost/xyz

Firstly, does this mean that my HTMLs are being served by Apache and
JSPs by Tomcat?
The only way to confirm this is to consult your access logs, as both 
Tomcat and Apache can serve HTML files.  This is also dependent on your 
mod_jk configuration (JkMount in httpd.conf).

Secondly, is it possible to access the entire application by just the
following:
http://localhost

That is, I don't want to type xyz anymore in the URL.
See the ROOT Context example in the default server.xml.  Something like:

Context path= docBase=xyz

Should do the trick for you assuming that your webapp is in
CATALINA_HOME/webapps/xyz.
John



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 by Apache and
JSPs by Tomcat?
Secondly, is it possible to access the entire application by just the
following:

http://localhost

That is, I don't want to type xyz anymore in the URL. 

Thanks in advance,
Ruchi




Conclusion is the point when you get tired of thinking. 
-
Ruchi Dayal
Software Engineer - Life Science Computing, LLC.
1000 Lafayette Blvd.
Bridgeport,  CT - 06604
Phone:(203) 332-7060 x 230
Fax:  (203) 332-7461 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 when I type:
http://localhost/xyz

Firstly, does this mean that my HTMLs are being served by Apache and
JSPs by Tomcat?
The only way to confirm this is to consult your access logs, as both Tomcat 
and Apache can serve HTML files.  This is also dependent on your mod_jk 
configuration (JkMount in httpd.conf).

Secondly, is it possible to access the entire application by just the
following:
http://localhost

That is, I don't want to type xyz anymore in the URL.
See the ROOT Context example in the default server.xml.  Something like:

Context path= docBase=xyz

Should do the trick for you assuming that your webapp is in 
CATALINA_HOME/webapps/xyz.

John



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 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

Secondly, is it possible to access the entire application by just the
following:
http://localhost

That is, I don't want to type xyz anymore in the URL. 

sure, use the RewriteEngine of apache

nicolas

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 incorrect.  With mod_jk and mod_jk2, you separate content by URI 
mapping:

JkMount /*.jsp ajp13

means Tomcat only serves JSP, not HTML, not GIF not JPEG.


Secondly, is it possible to access the entire application by just the
following:
http://localhost

That is, I don't want to type xyz anymore in the URL.

sure, use the RewriteEngine of apache
Possible, but not needed.  This can be done with the correct Context entry 
in server.xml.

John



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Changing URL

2003-07-16 Thread Ruchi Dayal
John:

Changing the ROOT context doesn't help.

Also, here's what my APACHE_HOME/logs/access.log reads like when I hit
http://localhost/xyz

127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/index.html
HTTP/1.1 304 0
127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/xyz.css HTTP/1.1
304 0
127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/images.js HTTP/1.1
304 0

And so on

Does this indicate that html is still being retrieved from
CATALINA_HOME/xyz as I suspect?
If yes, what should I do to make Apache serve HTML and call Tomcat for
JSP only?

Thanks in advance,
Ruchi




-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 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 when I type:

 http://localhost/xyz

 Firstly, does this mean that my HTMLs are being served by Apache and 
 JSPs by Tomcat?

The only way to confirm this is to consult your access logs, as both
Tomcat 
and Apache can serve HTML files.  This is also dependent on your mod_jk 
configuration (JkMount in httpd.conf).

 Secondly, is it possible to access the entire application by just the
 following:

 http://localhost

 That is, I don't want to type xyz anymore in the URL.

See the ROOT Context example in the default server.xml.  Something like:

Context path= docBase=xyz

Should do the trick for you assuming that your webapp is in 
CATALINA_HOME/webapps/xyz.

John



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Changing URL

2003-07-16 Thread John Turner
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.

There's no problem with Apache serving a file from CATALINA_HOME/xyz...it 
doesn't matter.  Don't get caught up in file location, focus on the server 
doing the serving.  In the lines you posted, the server doing the serving 
is Apache, the location of the file being under CATALINA_HOME/webapps/xyz 
is irrelevant since CATALINA_HOME/webapps/xyz can easily be a valid file 
location for Apache.

You'll have to clarify what you mean by changing the ROOT context doesn't 
help.  What exactly did you do?

John

On Wed, 16 Jul 2003 16:30:09 -0400, Ruchi Dayal [EMAIL PROTECTED] wrote:

John:

Changing the ROOT context doesn't help.

Also, here's what my APACHE_HOME/logs/access.log reads like when I hit
http://localhost/xyz
127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/index.html
HTTP/1.1 304 0
127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/xyz.css HTTP/1.1
304 0
127.0.0.1 - - [16/Jul/2003:16:22:10 -0400] GET /xyz/images.js HTTP/1.1
304 0
And so on

Does this indicate that html is still being retrieved from
CATALINA_HOME/xyz as I suspect?
If yes, what should I do to make Apache serve HTML and call Tomcat for
JSP only?
Thanks in advance,
Ruchi


-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 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 when I type:

http://localhost/xyz

Firstly, does this mean that my HTMLs are being served by Apache and 
JSPs by Tomcat?
The only way to confirm this is to consult your access logs, as both
Tomcat and Apache can serve HTML files.  This is also dependent on your 
mod_jk configuration (JkMount in httpd.conf).

Secondly, is it possible to access the entire application by just the
following:
http://localhost

That is, I don't want to type xyz anymore in the URL.
See the ROOT Context example in the default server.xml.  Something like:

Context path= docBase=xyz

Should do the trick for you assuming that your webapp is in 
CATALINA_HOME/webapps/xyz.

John



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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 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]
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 
Ravi


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




--



   Lajos Moczar
  
Open Source Support, Consulting and Training
  
Cocoon Developer's Handbook
 (www.amazon.com/exec/obidos/tg/detail/-/0672322579)

   _  _
  / \ /
 /___\  /
/ \   /

 http://www.galatea.com -- powered by AzSSL


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 - 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
  Ravi
 
 
  --
  To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
mailto:[EMAIL PROTECTED]
 
 


 --



 Lajos Moczar

  Open Source Support, Consulting and Training

  Cocoon Developer's Handbook
   (www.amazon.com/exec/obidos/tg/detail/-/0672322579)

 _  _
/ \ /
   /___\  /
  / \   /

   http://www.galatea.com -- powered by AzSSL


 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Changing URL

2003-01-23 Thread Lajos Moczar
Good idea. But either way, it is a bad idea 'cause you want to keep 443 
as a secure port and not get confused into having users send unencrypted 
confidential data. I'm curious why he wants to do this ...

Lajos


Jakarta wrote:
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 - 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
Ravi


--
To unsubscribe, e-mail:



mailto:[EMAIL PROTECTED]


For additional commands, e-mail:



mailto:[EMAIL PROTECTED]





--



   Lajos Moczar
  
Open Source Support, Consulting and Training
  
Cocoon Developer's Handbook
 (www.amazon.com/exec/obidos/tg/detail/-/0672322579)

   _  _
  / \ /
 /___\  /
/ \   /

 http://www.galatea.com -- powered by AzSSL


--
To unsubscribe, e-mail:


mailto:[EMAIL PROTECTED]


For additional commands, e-mail:


mailto:[EMAIL PROTECTED]






--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]





--



   Lajos Moczar
  
Open Source Support, Consulting and Training
  
Cocoon Developer's Handbook
 (www.amazon.com/exec/obidos/tg/detail/-/0672322579)

   _  _
  / \ /
 /___\  /
/ \   /

 http://www.galatea.com -- powered by AzSSL


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 http://localhost:8080/importantData.html 
to avoid the SSL connection?
It's not very secure.
please give me a hand
Thanks

Steph



AW: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Ralph Einfeldt


security-constraint
  web-resource-collection
web-resource-nameSecure Portion Of The Site/web-resource-name
  url-pattern/importantData.html/url-pattern
  /web-resource-collection
  user-data-constraint
transport-guaranteeCONFIDENTIAL/transport-guarantee
  /user-data-constraint
/security-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
 We only have to change manually the URL with 
 http://localhost:8080/importantData.html to avoid the SSL connection?

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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-nameSecure Portion Of The Site/web-resource-name
   url-pattern/importantData.html/url-pattern
   /web-resource-collection
   user-data-constraint
 transport-guaranteeCONFIDENTIAL/transport-guarantee
   /user-data-constraint
 /security-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
  We only have to change manually the URL with 
  http://localhost:8080/importantData.html to avoid the SSL 
 connection?
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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 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-nameSecure Portion Of The Site/web-resource-name
   url-pattern/importantData.html/url-pattern
   /web-resource-collection
   user-data-constraint
 transport-guaranteeCONFIDENTIAL/transport-guarantee
   /user-data-constraint
 /security-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
  We only have to change manually the URL with
  http://localhost:8080/importantData.html to avoid the SSL
 connection?


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




AW: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Ralph Einfeldt

Sorry, but I  didn't understand this question.

To learn more about this topic you might have 
a look at:
http://www.onjava.com/pub/a/onjava/2001/08/06/webform.html?page=2
http://kb.atlassian.com/content/orion/docs/deployment/web.xml.html

or the servlet spec 2.3 at
http://java.sun.com/products/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?
 
 - 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
 
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Tomcat SSL - Changing URL https to http

2002-10-10 Thread Turner, John


Disable the connector on 8080 in server.xml if you don't want requests going
to that port.

In production, you should only have the connectors enabled that you are
actually using...anything else should be disabled.  Simply comment out the
entry in server.xml and restart Tomcat.

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 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 
 http://localhost:8080/importantData.html to avoid the SSL connection?
 It's not very secure.
 please give me a hand
 Thanks
 
 Steph
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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
to that port.

In production, you should only have the connectors enabled that you are
actually using...anything else should be disabled.  Simply comment out the
entry in server.xml and restart Tomcat.

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 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
 http://localhost:8080/importantData.html to avoid the SSL connection?
 It's not very secure.
 please give me a hand
 Thanks

 Steph


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]