Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the control flow in servlet when we send a request?

Answer Posted / dipak.cvrca

-->first request comes from client browser to server
(container)which takes the control to the web.xml file.

-->in xml file servlet file(.class) will be searched
according to the information about the url pattern given
in the address,then coresponding class file is loaded to
the container(loading) by the method
java.lang.class.forName().newInstance.

-->now container call the init(servletConfig) method to add
necessary headers in the servlet,such as Config,context
session,request and many more.

-->now control pass to the service()of the HttpServlet(if
you have extended this class) and the type of method
(get/post) is checked and accordingly the control will
pass to the implemented doGet() or doPost() of the your
class(by the dynamic method dispatch)

-->after service the container will call the destroy() of
Servlet class.
i hope this answer will satishfy you,thank
you,(Dipak ku. jenamani)

Is This Answer Correct ?    95 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?

1017


What is difference between ServletResponse sendRedirect() and RequestDispatcher forward() method?

1041


Difference between httpservlet and generic servlets?

1042


Can we get PrintWriter and ServletOutputStream both in a servlet?

1101


What is servlet and list its types?

1014


What do you mean by web applications? Explain web application directory arrangement?

917


Why the concept of single thread model interface is used?

923


What's the advantages using servlets than using cgi?

946


How can we refresh automatically when new data has entered the database?

1052


How do you define a servlet?

937


What do you mean by web applications?

1118


Write a hello world program using servlets.

1013


List the Different types of servlet?

983


What is meant by cookies?

1027


Whether we can get deadlock situation in servlets?

1010