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 |
give the syntax of doGet() and doPost()?
How to notify an object in session when session is invalidated or timed-out?
What is servlet in web technology?
Why the container loads server at the application startup and how?
What's the difference between authentication and authorization?
What is servlet configuration?
What is the difference between Servlet Request and Servlet Context when calling a Request Dispatcher?
How native code can be used in a servlet?
What is preinitialization of a servlet?
What are the exceptions thrown by servlets? Why?
How the servlet is loaded?
When servlet is loaded?