Differentiate between the web server and application server?

devquora
devquora

Posted On: Feb 22, 2018

 

Web Server is the connection between the HTTP and HTML. Web server takes the response from the client browser and gives output in the form of HTML. It is understandable of HTTP and works on HTTP protocol.

Apache Web server is a good example of the web server. There are several containers that are used to accomplish servlets. JSPs is also referred to as servlet container, for e.g. Tomcat.

While there is some list of supplementary features that are provided by the Application Servers. This list includes

Enterprise JavaBeans support

JMS Messaging support

Transaction Management

So, Applications server are basically the modified version of web servers which includes some additional features and functionalities that make the developers more comfort with business applications.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Java Servlet Interview Questions

    What do you mean by Servlet?

    It is designed by the Java software company. It is used to extend the ability of the server...

    Java Servlet Interview Questions

    Which HTTP method is said to be non-idempotent and idempotent?

    If any HTTP brings the same result every time then it means it is idempotent...

    Java Servlet Interview Questions

    What are the benefits of using Servlet over CGI?

    Servlet technology was introduced to overcome the limitations of CGI technology. These drawbacks are:..