what is differance between application server and web server
namita pa
Ranch Hand
Joined: Sep 06, 2001
Posts: 56
posted
0
A webserver hosts the web applications like servlets and jsp whereas an application server can take care of both the middleware i.e EJBs and jsp .
vaibhav patil
Greenhorn
Joined: Sep 07, 2001
Posts: 2
posted
0
Thanks namita,
Originally posted by namita pa: A webserver hosts the web applications like servlets and jsp whereas an application server can take care of both the middleware i.e EJBs and jsp .
Oleg Shklyar
Greenhorn
Joined: May 28, 2001
Posts: 26
posted
0
My point of view: The best example of pure Web Server is Apache. You can also use another definition as HTTP server or Web Container which serves using HTTP methods (mostly GET and POST). Application server is a set of containers: - jsp/servlet container ( Tomcat has both:web and jsp/servlet containers); - EJB , JMS, JMX containers (JBoss for instance); WebLogic App Server has Web, EJB, JMX and JMX containers. App Server is like a set of services with useful admin console and some useful features as load balancing, transaction, authentication and authorazation. Tell me if I wrong. Oleg.
faisal mahmood
Ranch Hand
Joined: Nov 30, 2000
Posts: 349
posted
0
From my point of view: * static contents are distributed by web server (e.g. Apache) * dynamic contents are distributed by application server Servlets/jsps/ejbs etc. J2EE stuff are in the application tier. Faisal