what is catalina in tomcat server.

Answers were Sorted based on User's Feedback



what is catalina in tomcat server...

Answer / raj

Catalina is the name of the servlet container of Apache
Tomcat since version 4.x. Tomcat implements Sun
Microsystems' specifications for servlet and JavaServer
Pages (JSP), which are important Java-based Web technologies.
Tomcat's servlet container was redesigned as Catalina in
Tomcat version 4.x.
other components of the Tomcat engine are:
* Tomcat Jasper which converts the code portions within
JavaServer Pages into servlets and pass them to Catalina to
process.
* Tomcat Coyote which is an HTTP connector based on
HTTP/1.1 specifications that receives and transmits web
requests to the Tomcat engine by listening to a TCP/IP port
and returns requests back to the requesting client.

Is This Answer Correct ?    105 Yes 3 No

what is catalina in tomcat server...

Answer / p.l.n.kumar

up to my knowledge it is a

servlet container class

Is This Answer Correct ?    54 Yes 14 No

what is catalina in tomcat server...

Answer / robiboy

catelina - Servlet Container
Jasper - JSP Container

Is This Answer Correct ?    42 Yes 6 No

what is catalina in tomcat server...

Answer / kiran sangeri

i think catalina is the name of the servlet container of
Apache Tomcat.it is heart of the tomcat

Is This Answer Correct ?    19 Yes 7 No

what is catalina in tomcat server...

Answer / shivendra puri

Apache Tomcat is a widely used implementation of the Java
Servlet Specification, which has been developed as an open-
source project by the Apache Software Foundation since
1999, when the project source was donated to the ASF by Sun
Microsystems.

Tomcat is actually composed of a number of components,
including a Tomcat JSP engine and a variety of different
connectors, but its core component is called Catalina.
Catalina provides Tomcat's actual implementation of the
servlet specification; when you start up your Tomcat
server, you're actually starting Catalina.

In this article, we'll get to know Tomcat's core component,
from the origins of the name "Catalina", to an overview of
how Catalina is configured. We'll also look at some
Catalina-related tips and tricks, such as how to get the
most out of Catalina's built-in logging functionality, and
how to manage the Catalina class as an MBean using JMX.

Tired of wading through hundreds of lines of XML just to
make a simple change to your Tomcat configuration? Tcat
Server makes Tomcat configuration simple. Create optimized
configuration profiles, save them, and apply them to groups
of servers with a single click.

Is This Answer Correct ?    12 Yes 2 No

what is catalina in tomcat server...

Answer / swetha pachwa

Tomcat version 4.x was released with Catalina (a redesigned servlet container), Coyote (an HTTP connector) and Jasper (a redesigned JSP engine).

Catalina is Tomcat's servlet container. Catalina implements Sun Microsystems' specifications for servlet and JavaServer Pages (JSP). The architect for Catalina was Craig McClanahan.

Is This Answer Correct ?    8 Yes 1 No

what is catalina in tomcat server...

Answer / anjana m u

catalina is the name of the java class of Tomcat 4.0
When u start Tomcat ,really u r starting catalina class;

Is This Answer Correct ?    12 Yes 10 No

what is catalina in tomcat server...

Answer / sumitpalsingh

Catlina is a container that is used to execute sevlet program .it is internally contained by Tomcat Server also.in the form of(Catlina.jar file).

Is This Answer Correct ?    0 Yes 0 No

what is catalina in tomcat server...

Answer / durga

Catalina is Tomcat's servlet container. Catalina implements specifications for servlet and JavaServer Pages (JSP).

Is This Answer Correct ?    0 Yes 0 No

what is catalina in tomcat server...

Answer / dheerendra

Catalina is the Java Engine (JRE / JVM) that's built into
Tomcat and provides an environment in which Servlets can be run

Is This Answer Correct ?    9 Yes 12 No

Post New Answer

More Advanced Java Interview Questions

what is the difference between System.out.println and out.println in java

10 Answers   CTS,


how the action can be map from jsp page to bean class in mvc1

1 Answers   Photon,


Hi I have joined java course. I also want additional help from any tutorials website. Please suggest me tutorials which provides easy to understand online applet tutorials?

0 Answers  


Will it be called overriding if I do not change the parameters or return type, instead throw a different exception in the method signature.

4 Answers   HeadStrong,


Can I have an action without a form?

0 Answers  






1) which method of the RequestDispatcher cannot be called once the output is sent to the client? a. forward b. include c. both a&b 2) which interface should an object implement to get notified of changes to the list of active sessions in a web application? a. HttpSessionListener b. HttpSessionActivationListener c. HttpSessionAttributeLIstener 3) A user can select multiple locations from a list box on an HTML form, which of the following methods can be used to retrieve all the selected location? a. getParameter() b. getParameterValues() c. getParamValues() 4) which of the following methods should be used to send character text to the client? a. ServletResponse.getWriter() b. ServletResponse.getOutputStream() c. ServletResponse.getOut() 5) which implicit object is always available in a JSP page? a. exception b. session c. out 6) which inclusion mechanism doesn't include the source of the page, rather the output of the page. a. include directive b. jsp:include action c. Bothe a& b 7) which attribute of the page controls whether a page participates in session or not? a. session-allowed b. session c. isSession

1 Answers  


Name the eight primitive java types.

0 Answers  


Is multiple try block is possible in single java Application......

3 Answers  


What you mean by COM and DCOM?

0 Answers  


Explain the stub's and skeleton's functionality?

7 Answers  


explain the flow of struts?

2 Answers   SolutionNET,


Explain the methods of Naming class, rebind( ) and lookup()?

1 Answers  


Categories