Difference between web container & web server...........
Difference between web server & application server?????????
Answer Posted / veens
web server: Is responsible for receiving request from
client and sending responses to client.
web container: w.c contains Servlet engine and jsp engine,
responsible for executing servlets(JSP) life cycle.
once webserver receivs the request it sends the control to
webcontainer,after execution of servlet(jsp) response will
be sent to web server ,web server will send the response to
client.
Application server: web container + EJB container(engine)
| Is This Answer Correct ? | 64 Yes | 3 No |
Post New Answer View All Answers
What is a web application and what is it’s directory structure?
What is a generic servlet?
How to get the actual path of servlet in server?
Can we get PrintWriter and ServletOutputStream both in a servlet?
What is the difference between jsp and servlet life cycle?
Is servlet a framework?
What are important features of Servlet 3?
Who is responsible to create the object of servlet?
What is the difference between servlet and filter?
What are common tasks performed by Servlet Container?
What is servletconfig?
Why servlet is used as controller ? Not JSP? I want complete explation?
What is the difference between Difference between doGet() and doPost()?
What is cgi and what are its drawbacks?
What is the requirement of servlet config and servlet context implemented and how are they implemented?