What is the difference between an applet and a servlet?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ramadass
applet:It have graphical user interface.it runs in client
browser.
servlet:it have no graphical user interface.it run's in
server
| Is This Answer Correct ? | 49 Yes | 9 No |
(1):Applet is a part of Core JAVA and Servlet of Advance
Java. Applet is client side program and Servlet is Server
side. When Applet runs it take the resources of client
whereas Servlet is processed at server.
(2):An Applet's class, jar files can be accessed and
downloadable by client but not so in case of servlet.
(3):Applets can run under any web browser their execution
is dependent on Client as they require JRE Whereas Servlets
do not require any thing specific at client side, as they
require java enabled web/application Server.
| Is This Answer Correct ? | 30 Yes | 1 No |
Answer / sanjay
servlet operates within the domain of server while applet
does not required support for java in the java web browser.
| Is This Answer Correct ? | 20 Yes | 5 No |
Answer / ravikiran.chd
Applet is teh application which runs on browser,servlet is
the one which runs on server
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / pranavbapat
Applet is for a browser.
Servlet is for server.
Applet has GUI.
Server has no GUI.
Applet is client side coding.
Servlet is server side coding.
Applet operates within the domain of a web browser.
Servlet operates within the domain of a web server.
With applets, only static web pages can be developed.
With servlets, dynamic web pages can be developed.
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / sssk
applets extends the functionality of web browser, servlet extends the functinality of webserver.
| Is This Answer Correct ? | 3 Yes | 0 No |
thankyou very much ur explanation very nice, up to this
moment i felt confusion, right now i overcome that doubt.
| Is This Answer Correct ? | 7 Yes | 5 No |
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?
What are the two important api's in for servlets?
How can the session in servlet can be destroyed?
What must be implemented by all servlets?
What is servlet looping or chaining?
What’s the use of the servlet wrapper classes??
What are the steps that are involved in using the httpservlet class?
give the syntax of doGet() and doPost()?
Elucidate servlet attributes and its scope?
How httpservlet is different from the genericservlet?
Explain the difference between get and post method in servlet?
What is the procedure of invoking different servlet in a different application?