how this statement works..?
public void service(HttpServletRequest
request,HttpServletResponse response)
Answers were Sorted based on User's Feedback
Answer / sanjeev kumar
When ever a http client request is sumbitted servlet engine
will received this request and it identifies the proper
servlet to handle this request from web.xml and calls the
public service method of the perticular servlet. Internally
this public service will call the private service method
and private service method will call the doGet() or doPost
() method based on the client request. This public void
service(HttpServletRequest request, HttpServletResponse
response) will be called once per the request.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / shubha
1.servlet container calls the service(servletreq,
servlrtResp) method of HTTPServlet.
2.the service(ServletReq, ServletResp) method of
HTTPServlet calls the service(HttpServletReq,
HttpServletResp) method of the same class. in this service
method is overloaded in the HttpServlet class.
3.service(HttpServletReq, HttpServletResp) mthos alayse the
request and findout which HTTP method is being
used.Depending on Http method appropriate doXXX() mthod
will be call.
| Is This Answer Correct ? | 5 Yes | 0 No |
what is servlet chaining?
Define context initialization parameters.
Explain servlet life cycle?
What is a parser. What does a parser do with a XML? Why do we need it?
What is a java servlet?
Write a program to show the functionality of doget and dopost method?
What do you mean by default initialization in java servlet?
Is there any differance b/w getting servlet context from servlet config and session? if yes then what is that?
Hi frnds iam new to Java Kindy any one can provide or me Servlets Example code and can explain to me flow of servlets and as Jsp and Struts and provide to me some sample example on these 3 topic flow,code example,and tutorials,and related websites which i can refer....thanks in advance..........
What is the purpose of requestdispatcher interface?
How threads are implemented in servlets?
Difference between doget and dopost?