Re: Tomcat webserver or appserver?

2005-05-21 Thread Mark Thomas

raja buddha wrote:
I am new to appache. I wanted to know where tomcat  is webserver or 
appserver


Apache Tomcat is a Servlet container. Servlet containers can also server 
static resources (ie act as a web server).


An app server in the J2EE sense usually means a Servlet container 
combined with EJB container.


Mark

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



RE: Tomcat webserver or appserver?

2005-05-21 Thread Richard Mixon (qwest)
raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May
21, 2005 3:07 PM:
 Hi all.
 I am new to appache. I wanted to know where tomcat  is webserver or
 appserver Raju 

Just to be clear, the Apache HTTP Web server (http://httpd.apache.org)
is different than the Tomcat Java web application server
(http://jakarta.apache.org/tomcat).

Tomcat started as primarily a Java application server with basic HTTP
server support. Today it offers pretty complete and sophisticated web
server support - although not as complete as the standard Apache web
server.

As an application server, Tomcat does not support ALL of the J2EE spec,
just the parts necessary for what are often called web applications -
those primarily using servlet and JSP technologies with underlying
database access. For example, you cannot deploy Enterprise Java Beans
(Session beans or Entity beans) on Tomcat - but, IMHO, these are only
needed for the largest and more sophisticated enterprise applications.
The vast majority of web applications and web sites can run on Tomcat.
If you really need EJB support you can look at Jboss, WebSphere, BEA or
one of the other J2EE application servers. BTW, JBoss embeds a copy of
Tomcat as its JSP/Servlet engine.

Also, as a standard web (HTTP) server, Tomcat has basic support for CGI
and some level of support for PHP (seach the archive for this list).
Tomcat does not support the myriad of plugins, extension and modules
that Apache or some of the other web servers do. Still most sites can
easily be supported by Tomcat and the newer versions are very, very
close in terms of performance for serving straight HTML pages.

HTH - Richard


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



RE: Tomcat webserver or appserver?

2005-05-21 Thread Richard Mixon (qwest)
raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May
21, 2005 3:07 PM:
 Hi all.
 I am new to appache. I wanted to know where tomcat  is webserver or
 appserver Raju 

Just to be clear, the Apache HTTP Web server (http://httpd.apache.org)
is different than the Tomcat Java web application server
(http://jakarta.apache.org/tomcat).

Tomcat started as primarily a Java application server with basic HTTP
server support. Today it offers pretty complete and sophisticated web
server support - although not as complete as the standard Apache web
server.

As an application server, Tomcat does not support ALL of the J2EE spec,
just the parts necessary for what are often called web applications -
those primarily using servlet and JSP technologies with underlying
database access. For example, you cannot deploy Enterprise Java Beans
(Session beans or Entity beans) on Tomcat - but, IMHO, these are only
needed for the largest and more sophisticated enterprise applications.
The vast majority of web applications and web sites can run on Tomcat.
If you really need EJB support you can look at Jboss, WebSphere, BEA or
one of the other J2EE application servers. BTW, JBoss embeds a copy of
Tomcat as its JSP/Servlet engine.

Also, as a standard web (HTTP) server, Tomcat has basic support for CGI
and some level of support for PHP (seach the archive for this list).
Tomcat does not support the myriad of plugins, extension and modules
that Apache or some of the other web servers do. Still most sites can
easily be supported by Tomcat and the newer versions are very, very
close in terms of performance for serving straight HTML pages.

HTH - Richard


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



RE: Tomcat webserver or appserver?

2005-05-21 Thread raja buddha

Thanks a lot

Prem


From: Richard Mixon (qwest) [EMAIL PROTECTED]
Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org
To: 'Tomcat Users List' tomcat-user@jakarta.apache.org
Subject: RE: Tomcat webserver or appserver?
Date: Sat, 21 May 2005 15:32:31 -0700

raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May
21, 2005 3:07 PM:
 Hi all.
 I am new to appache. I wanted to know where tomcat  is webserver or
 appserver Raju

Just to be clear, the Apache HTTP Web server (http://httpd.apache.org)
is different than the Tomcat Java web application server
(http://jakarta.apache.org/tomcat).

Tomcat started as primarily a Java application server with basic HTTP
server support. Today it offers pretty complete and sophisticated web
server support - although not as complete as the standard Apache web
server.

As an application server, Tomcat does not support ALL of the J2EE spec,
just the parts necessary for what are often called web applications -
those primarily using servlet and JSP technologies with underlying
database access. For example, you cannot deploy Enterprise Java Beans
(Session beans or Entity beans) on Tomcat - but, IMHO, these are only
needed for the largest and more sophisticated enterprise applications.
The vast majority of web applications and web sites can run on Tomcat.
If you really need EJB support you can look at Jboss, WebSphere, BEA or
one of the other J2EE application servers. BTW, JBoss embeds a copy of
Tomcat as its JSP/Servlet engine.

Also, as a standard web (HTTP) server, Tomcat has basic support for CGI
and some level of support for PHP (seach the archive for this list).
Tomcat does not support the myriad of plugins, extension and modules
that Apache or some of the other web servers do. Still most sites can
easily be supported by Tomcat and the newer versions are very, very
close in terms of performance for serving straight HTML pages.

HTH - Richard


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



_
On the road to retirement? Check out MSN Life Events for advice on how to 
get there! http://lifeevents.msn.com/category.aspx?cid=Retirement



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



RE: Tomcat Webserver

2004-08-04 Thread Shapira, Yoav

Hi,
Tomcat is a webserver and can function as such by itself.  You don't
have to have Apache or IIS or anything in front of it.

The DocumentRoot directory is $CATALINA_HOME/webapps/ROOT/, but you
should read the Tomcat configuration reference as it's vastly different
from Apache.  There are multiple document roots, one per web
application.


Yoav Shapira
Millennium Research Informatics


-Original Message-
From: Marcelo Muzilli (Gelt) [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 04, 2004 3:42 PM
To: [EMAIL PROTECTED]
Subject: Tomcat Webserver
Importance: High

Howdy TomcatERs,

   I would like to know if Tomcat has an webserver inside it or do
I
have to work with Apache (for example) together. If yes, where is the
DocumentRoot directory?

Regards,

Marcelo Muzilli
GELT Tecnologia
www.gelt.com.br
[EMAIL PROTECTED]
Tel: +55 (43) 3375 3187



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




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



RE: Tomcat Webserver

2004-08-04 Thread Charles Baker
Tomcat is capable of server static and dynamic content with out Apache.
One of the main benefits to using Apache is to let Apache server the
static content and thereby reduce the load on Tomcat. By default, the
document roots for your various webapps are in
$CATALINA_HOME/webapps/$WEBAPP_NAME . At least that's true of Tomcat
4.1.x. I haven't begun using 5.0.x yet.

All of this is covered in the docs:

http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html

-Original Message-
From: Marcelo Muzilli (Gelt) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 04, 2004 3:42 PM
To: [EMAIL PROTECTED]
Subject: Tomcat Webserver
Importance: High

Howdy TomcatERs,

I would like to know if Tomcat has an webserver inside it or do
I
have to work with Apache (for example) together. If yes, where is the
DocumentRoot directory?

Regards,

Marcelo Muzilli
GELT Tecnologia
www.gelt.com.br
[EMAIL PROTECTED]
Tel: +55 (43) 3375 3187 



-
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: Tomcat Webserver

2004-08-04 Thread Dale, Matt

Yes tomcat can also serve static pages. You just need to create a web app and place 
your files in there.

Ta
Matt

-Original Message-
From: Marcelo Muzilli (Gelt) [mailto:[EMAIL PROTECTED]
Sent: 04 August 2004 20:42
To: [EMAIL PROTECTED]
Subject: Tomcat Webserver
Importance: High


Howdy TomcatERs,

I would like to know if Tomcat has an webserver inside it or do I
have to work with Apache (for example) together. If yes, where is the
DocumentRoot directory?

Regards,

Marcelo Muzilli
GELT Tecnologia
www.gelt.com.br
[EMAIL PROTECTED]
Tel: +55 (43) 3375 3187 



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

Any opinions expressed in this E-mail may be those of the individual and not 
necessarily the company. This E-mail and any files transmitted with it are 
confidential and solely for the use of the intended recipient. If you are not the 
intended recipient or the person responsible for delivering to the intended recipient, 
be advised that you have received this E-mail in error and that any use or copying is 
strictly prohibited. If you have received this E-mail in error please notify the 
beCogent postmaster at [EMAIL PROTECTED]
Unless expressly stated, opinions in this email are those of the individual sender and 
not beCogent Ltd. You must take full responsibility for virus checking this email and 
any attachments.
Please note that the content of this email or any of its attachments may contain data 
that falls within the scope of the Data Protection Acts and that you must ensure that 
any handling or processing of such data by you is fully compliant with the terms and 
provisions of the Data Protection Act 1984 and 1998.


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

RE: Tomcat Webserver

2004-08-04 Thread Wilson, Allen
Yes it has a webserver in it..

Root =  directory_to_tomcat/webapps/root

-Original Message-
From: Marcelo Muzilli (Gelt) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 04, 2004 2:42 PM
To: [EMAIL PROTECTED]
Subject: Tomcat Webserver
Importance: High


Howdy TomcatERs,

I would like to know if Tomcat has an webserver inside it or do
I have to work with Apache (for example) together. If yes, where is the
DocumentRoot directory?

Regards,

Marcelo Muzilli
GELT Tecnologia
www.gelt.com.br
[EMAIL PROTECTED]
Tel: +55 (43) 3375 3187 



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