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
Describe the phases of servlet lifecycle?
What is the process to implement doget and dopost methods?
What is the use of servletconfig interface?
What is servlet invoker?
Can we use the constructor, instead of init(), to initialize servlet?
What is the difference between sendredirect() and forward() in a servlet?
How do you run a servlet?
What is context in servlet?
What is the purpose of dispatcherservlet properties?
What are its drawbacks of cgi?
How to get the actual path of servlet in server?
When Servlet is unloaded?
When to use doget() and when dopost()?
What is servlet container?
What are all the ways for session tracking?