Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web server vs App server

Is an application server something like an additional layer of application servicing above a web server?

Does an application server always have a web server as its core?

What is the difference?

like image 849
sij Avatar asked Mar 30 '11 04:03

sij


People also ask

Can web and application server be same?

By strict definition, a web server is a common subset of an application server. A web server delivers static web content—e.g., HTML pages, files, images, video—primarily in response to hypertext transfer protocol (HTTP) requests from a web browser.

Which is better web server or application server?

Application server utilizes more resources. Web Server provides the runtime environment for web applications. Application server provides the runtime environment for enterprise applications. Multithreading is not supported.

Is Tomcat a web server or application server?

Apache Tomcat (Link resides outside IBM) is an open source application server that executes Java Servlets, renders and delivers web pages that include JavaServer Page code, and serves Java Enterprise Edition (Java EE) applications. Released in 1998, Tomcat is the most widely used open source Java application server.

Does application server need web server?

Most of the application servers have Web Server as integral part of them, that means App Server can do whatever Web Server is capable of. Additionally App Server have components and features to support Application level services such as Connection Pooling, Object Pooling, Transaction Support, Messaging services etc.


1 Answers

No,Application server does not contain web server...

Read following articles...

http://www.answers.com/topic/application-server

http://download.oracle.com/docs/cd/E19159-01/819-3671/ablat/index.html

Basically:

After the Web exploded in the mid-1990s, application servers became Web based.

Also following shows the difference between web server, web container and application server...

Difference between a Web Server, Web Container, and an Application Server

A Web Server is a server capable of receiving HTTP requests, interpreting them, processing the corresponding HTTP Responses and sending them to the appropriate clients (Web Browsers). Example: Apache Web Server. Read more about Web Servers and their working>>

A Web Container is a J2EE compliant implementation which provides an environment for the Servlets and JSPs to run. Putting it differently we can say that a Web Container is combination of a Servlet Engine and a JSP Engine. If an HTTP Request refers to a Web Component (typically a Servlet or a JSP) then the request is forwarded to the Web Container and the result of the request is sent back to Web Server, which uses that result to prepare the HTTP Response for the particular HTTP Request. Example: Tomcat is a typical Web Container. A typical setup would be to have Apache HTTP Server as the Web Server and Tomcat as the Web Container.

An Application Server is a complete server which provides an environment for running the business components (EJBs, ADF BCs, etc.) in addition to providing the capabilities of a Web Container as well as of a Web Server. Example: Bea WebLogic, IBM WebSphere, Oracle Application Server, etc.

like image 183
Jitesh Avatar answered Oct 06 '22 19:10

Jitesh