answersLogoWhite

0

Is Apache Tomcat an application server or a web server?

Updated: 8/17/2019
User Avatar

Wiki User

14y ago

Best Answer

Its a server for .jsp documents.

The jsp is JAVA code embedded in HTML

markoazul

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is Apache Tomcat an application server or a web server?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Apache Tomcat server commonly used for?

Apache Tomcat server is commonly used for hosting web applications. A web application is one that is executed in a web browser. For ex: http://www.wikianswers.com/ is a web application that is hosted on a webserver. Tomcat is one of the various web servers available. Some others are weblogic, websphere etc.


Tomacat is a web server?

Yes. Apache Tomcat is a Web Server


What is the default port for apache tomcat web server?

443


Which one is not a webserver Tomcat Apache IIS Mozilla?

Mozilla is not a web server. It is a freely available, open source web browser. Tomcat, Apache and IIS are all web servers.


What is a Apache Tomcat server. Explain its features and applications?

APACHE TOMCAT is a WEBSERVER that uses TOMCAT features for serving Java code - Servlets on web to clients.TOMCAT provides clustering, load balancing and enables applications to be deployed over Web.


What is web server and list of all web servers with its details?

A web server is a server that is able to store web pages allowing users to view them from another computing device and there are many web server types released by many companies and those are as follows: - Apache Web Server - Apache Tomcat - Microsoft's Internet Information Services (IIS) Windows Server - Nginx web server - Zeus Web Server


What is the Apache TomCat webserver?

Apache Tomcat is a servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a "pure Java" HTTP web server environment for Java code to run. Stephen Williamson, Server Engineer, http://www.HostMySite.com?utm_source=bb


How do you create a webpage using apache tomcat?

Apache`s Tomcat is an integrated web server. It si used for hoisting web sites with support for servlets, jsps and other server-side technologies. It IS NOT USED for CREATING websites. Make a web-page using html(you may use tools like dreamweaver or outlook for the design). Have a jsp script supporting the server side computations and run on apache webserver and feel the magic..


What is Apache Server?

Apache Web Server is the most popular web server software on the internet. It is available for all major operating systems, and supports most application frameworks (except for .ASP).


How do you create a virtual host by using an IP address?

It also depends on what type of web server you are using such as Apache or Tomcat or Nginx or Lighttpd or etc.. Procedure may varies from web server to web server.... Example (Apache): NameVirtualHost 10.10.10.10 <VirtualHost 10.10.10.10> ServerName www.domain.com ServerPath /domain DocumentRoot /web/domain </VirtualHost>


What is tomcat 5.5?

The Tomcat server is a Java based Web Application container that was created to run Servlets and JavaServer Pages (JSP) in Web applications. As part of Apache's open source Jakarta project, it has nearly become the industry accepted standard reference implementation for both the Servlets and JSP API. Written by expert Servlets and JSP software architect and author James Goodwill, this column will feature introductory Web application development issues, Tomcat installation and configuration, deploying Web applications onto Tomcat, Struts and much more.


Difference between apache and http server?

"Apache" is the name of a foundation that write open-source software. Apache HTTPD is a web server written in portable C (when people say "Apache", they usually mean Apache HTTPD.) It mostly serves static content by itself, but there are many add-on modules (some of which come with Apache itself) that let it modify the content and also serve dynamic content written in Perl, PHP, Python, Ruby, or other languages. Tomcat is primarily a servlet/JSP container. It's written in Java. It can serve static content, too, but its main purpose is to host servlets and JSPs. Although it's possible to get Tomcat to run Perl scripts and the like, you wouldn't use Tomcat unless most of your content was Java. "Apache" is the name of a foundation that write open-source software. Apache HTTPD is a web server written in portable C (when people say "Apache", they usually mean Apache HTTPD.) It mostly serves static content by itself, but there are many add-on modules (some of which come with Apache itself) that let it modify the content and also serve dynamic content written in Perl, PHP, Python, Ruby, or other languages. Tomcat is primarily a servlet/JSP container. It's written in Java. It can serve static content, too, but its main purpose is to host servlets and JSPs. Although it's possible to get Tomcat to run Perl scripts and the like, you wouldn't use Tomcat unless most of your content was Java.