What is servlet ,what is the use of it?

Showing Answers 1 - 8 of 8 Answers

sasikumar

  • Jul 27th, 2006
 

hai

     servlets is dynamic extension of application server

  Was this answer useful?  Yes

sreelakshmi.katneni

  • Jul 29th, 2006
 

servlets is a server side extension .used to have a dynamic execution of pages.

  Was this answer useful?  Yes

siva kumar reddy

  • Jul 31st, 2006
 

servlet is a technology implemented based on a different servers according to different protocals.

servlets are used to implentent dynamic webapplications.

  Was this answer useful?  Yes

Veeren76

  • Aug 16th, 2006
 

Puting in simple terms... Servlet is an tool to use application server resources to conduct normal execution.Jsps can also be used (ultimately jsps compile to httpservlets), but Servlets can be coded as typical java classes and execution of business logic is better controlled from servlets, Jsps--> create view partServlets --> logical partMaintainence is simple if followed with above 2 simple rules.Veerendra Jote

  Was this answer useful?  Yes

javasoft05

  • Sep 7th, 2006
 

servlet is a java object which resides in the webserver and is capable of generating the dynamic output for the web clients requests, usually HTTP requests.

                                    (or)

A multithreaded java object which is maintained by the container through lifecycle methods and render services to multiple clients is known as servlet.

A servlet is a class that is used to extend the capabilities of servers that host applications access via a request-response programming model. Although servlets can respond to any type of request, they are commonly used to extend the applications hosted by web servers. For such applications, Java Servlet technology defines HTTP-specific servlet classes.servlets are used to implentent dynamic webapplications.

  Was this answer useful?  Yes

Rajkumar

  • Feb 10th, 2007
 

hi,Servlet is a webcomponent which is used for the generating dyanamic content.Because most of the web applications are dynamic in nature .In order to generate the dyanmic content we are using the servlets.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions