What is the difference between an applet and a servlet?
Answer Posted / radhika
APPLETS:
1)It is a special type of java program which runs
on any web browser.
2)Applets resides at server but when client makes a
request it completely loaded into a place in the browser.
that place is known as SAND BOX.
3)Applet lives inside the sand box only. it does'nt
have any access to any things which exists out side of the
sand box.
4) Applets can't communicate with any other server
except where they resides.
5)Applets are useful to develop the static web pages.
SERVLETS:
1) Servlet is a purely server side program
2) Servlets always runs in the server.
3) Servlets can be placed in any web and
application servers.
4) Servlets are useful to develop the dynamic web
pages.
| Is This Answer Correct ? | 107 Yes | 11 No |
Post New Answer View All Answers
Explain jsessionid?
When a client request is sent to the servlet container, how does the container choose which servlet to invoke?
Describe in brief RequestDespatcher?
Explain the methods of request dispatcher in servlet?
Define declaration.
What is the
Explain how does JSP handle run-time exceptions?
What do you mean by mime type?
What are the different methods involved in generic servlet?
Why is it that we can't give relative URL's when using ServletContext.getRequestDispatcher() when we can use the same while calling ServletRequest.getRequestDispatcher()?
What are common tasks performed by Servlet Container?
How to get the path of servlet in the server?
How can you start a jta transaction from a servlet deployed on jboss?
What is the directory structure of a war file?
What are the functions of the servlet container?