RE: simple question on Tomcat-apache

2007-11-19 Thread Shekhar . Dhotre
Thanks for the reply Timothy. 



"Timothy Wonil Lee" <[EMAIL PROTECTED]> 
11/18/2007 10:12 PM
Please respond to
"Tomcat Users List" 


To
"'Tomcat Users List'" 
cc

Subject
RE: simple question on Tomcat-apache






Tomcat and HTTP Server are completely different product, and when you
download Tomcat, it does not include http server.

The only reason why "Tomcat" is also called "Apache Tomcat" is because it 
is
a product/project under Apache Software Foundation.

Apache HTTP server: http://httpd.apache.org/
Apache Tomcat: http://tomcat.apache.org/

Regards,

Timothy Wonil Lee

Java Developer
Koorong Books (http://www.koorong.com/)
email: [EMAIL PROTECTED]
direct ph: (+612) 9857 4448
direct fax: (+612) 9857 6648
http://www.google.com/reader/shared/16849249410805339619

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 

Sent: Monday, 19 November 2007 1:57 PM
To: Tomcat Users List
Subject: simple question on Tomcat-apache 

Hello , 

does Tomcat -apache contains http server  bundled in or Do I have to 
install  apache-tomcat and http server separately ? I can browse the 
default web page when I started apache-tomcat server ,but could`nt locate 
the httpd.conf file . So downloaded http server . Can someone clarify the 
differences between apache-tomcat for me ?  I`m newbee to it . Thanks .

I have downloaded both :

[EMAIL PROTECTED] /mnt/apache-tomcat]: ls -lrt
total 51200
-rw-r-   1 root system 10731520 Oct 25 09:43 
apache-tomcat-6.0.14.tar
-rw-r-   1 root system  5888526 Nov 17 16:54 
httpd-2.0.61.tar.gz
-rw-r-   1 root system  9579283 Nov 17 16:55 
apache-tomcat-4.1.36.tar.gz
[EMAIL PROTECTED] /mnt/apache-tomcat]:

!DSPAM:4740fbec128211562027968!


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: simple question on Tomcat-apache

2007-11-19 Thread Shekhar . Dhotre
I`m trying to setup  it for lawson app server (ERP)  ,which does not 
officially support 6.0 version (as per lawson admin) . Is  anyone  out 
there using  6.0  with lawson ?

Thanks 
Shekhar




"Caldarale, Charles R" <[EMAIL PROTECTED]> 
11/18/2007 10:47 PM
Please respond to
"Tomcat Users List" 


To
"Tomcat Users List" 
cc

Subject
RE: simple question on Tomcat-apache






> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] 
> Subject: RE: simple question on Tomcat-apache
> 
> Does  5.5 version falls into  newer version ? 

Yes, but 6.0 is better for several reasons, including simplified
classloading and the availability of an NIO connector.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: simple question on Tomcat-apache

2007-11-18 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] 
> Subject: RE: simple question on Tomcat-apache
> 
> Does  5.5 version falls into  newer version ? 

Yes, but 6.0 is better for several reasons, including simplified
classloading and the availability of an NIO connector.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: simple question on Tomcat-apache

2007-11-18 Thread Shekhar . Dhotre
 >>>Using both Tomcat and httpd together is fairly
>>common, but performance of the newer versions of Tomcat eliminate that
>>reason for doing so.
Does  5.5 version falls into  newer version ? 

Thanks for the explanation Chuck .




"Caldarale, Charles R" <[EMAIL PROTECTED]> 
11/18/2007 10:12 PM
Please respond to
"Tomcat Users List" 


To
"Tomcat Users List" 
cc

Subject
RE: simple question on Tomcat-apache






> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] 
> Subject: simple question on Tomcat-apache 
> 
> does Tomcat -apache contains http server

Tomcat is a capable web server as well as a Servlet/JSP container, and
can be used standalone for most environments.  As downloaded, the
default installation is oriented towards a development environment using
ports 8080 and 8443 and auto-deployment, but can easily be reconfigured
for production use on ports 80 and 443.  It does not include httpd
(which is why there's no httpd.conf file), but instead handles HTTP and
HTTPS with a pure Java implementation.  (There is a native code
connector available for performance-critical environments.)

Apache httpd is a separate product serving static content and script
execution, and can be used as a load-balancing mechanism to front-end
multiple Tomcats.  Using both Tomcat and httpd together is fairly
common, but performance of the newer versions of Tomcat eliminate that
reason for doing so.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: simple question on Tomcat-apache

2007-11-18 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] 
> Subject: simple question on Tomcat-apache 
> 
> does Tomcat -apache contains http server

Tomcat is a capable web server as well as a Servlet/JSP container, and
can be used standalone for most environments.  As downloaded, the
default installation is oriented towards a development environment using
ports 8080 and 8443 and auto-deployment, but can easily be reconfigured
for production use on ports 80 and 443.  It does not include httpd
(which is why there's no httpd.conf file), but instead handles HTTP and
HTTPS with a pure Java implementation.  (There is a native code
connector available for performance-critical environments.)

Apache httpd is a separate product serving static content and script
execution, and can be used as a load-balancing mechanism to front-end
multiple Tomcats.  Using both Tomcat and httpd together is fairly
common, but performance of the newer versions of Tomcat eliminate that
reason for doing so.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: simple question on Tomcat-apache

2007-11-18 Thread Timothy Wonil Lee
Tomcat and HTTP Server are completely different product, and when you
download Tomcat, it does not include http server.

The only reason why "Tomcat" is also called "Apache Tomcat" is because it is
a product/project under Apache Software Foundation.

Apache HTTP server: http://httpd.apache.org/
Apache Tomcat: http://tomcat.apache.org/

Regards,

Timothy Wonil Lee

Java Developer
Koorong Books (http://www.koorong.com/)
email: [EMAIL PROTECTED]
direct ph: (+612) 9857 4448
direct fax: (+612) 9857 6648
http://www.google.com/reader/shared/16849249410805339619

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, 19 November 2007 1:57 PM
To: Tomcat Users List
Subject: simple question on Tomcat-apache 

Hello , 

does Tomcat -apache contains http server  bundled in or Do I have to 
install  apache-tomcat and http server separately ? I can browse the 
default web page when I started apache-tomcat server ,but could`nt locate 
the httpd.conf file . So downloaded http server . Can someone clarify the 
differences between apache-tomcat for me ?  I`m newbee to it . Thanks .

I have downloaded both :

[EMAIL PROTECTED] /mnt/apache-tomcat]: ls -lrt
total 51200
-rw-r-   1 root system 10731520 Oct 25 09:43 
apache-tomcat-6.0.14.tar
-rw-r-   1 root system  5888526 Nov 17 16:54 
httpd-2.0.61.tar.gz
-rw-r-   1 root system  9579283 Nov 17 16:55 
apache-tomcat-4.1.36.tar.gz
[EMAIL PROTECTED] /mnt/apache-tomcat]:

!DSPAM:4740fbec128211562027968!


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



simple question on Tomcat-apache

2007-11-18 Thread Shekhar . Dhotre
Hello , 

does Tomcat -apache contains http server  bundled in or Do I have to 
install  apache-tomcat and http server separately ? I can browse the 
default web page when I started apache-tomcat server ,but could`nt locate 
the httpd.conf file . So downloaded http server . Can someone clarify the 
differences between apache-tomcat for me ?  I`m newbee to it . Thanks .

I have downloaded both :

[EMAIL PROTECTED] /mnt/apache-tomcat]: ls -lrt
total 51200
-rw-r-   1 root system 10731520 Oct 25 09:43 
apache-tomcat-6.0.14.tar
-rw-r-   1 root system  5888526 Nov 17 16:54 
httpd-2.0.61.tar.gz
-rw-r-   1 root system  9579283 Nov 17 16:55 
apache-tomcat-4.1.36.tar.gz
[EMAIL PROTECTED] /mnt/apache-tomcat]: