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
Name the different ways of session tracking.
How can we achieve transport layer security for our web application?
How we can get ip address of client in servlet?
What is called servlet mapping?
What mechanisms are used by a Servlet Container to maintain session information?
What are the disadvantages of storing session state in cookies?
How to generate the server side programming and the advantages of it over the other languages?
What is URL Encoding?
Describe in brief RequestDespatcher?
Explain url encoding?
Difference between GET and POST?
What are the life-cycle methods for a servlet?
What are the functions of Servlet container?
Explain the concept of ssi ?
The code in a finally clause will never fail to execute, right?