How can you maintain servlet chaining?
Answer / bikash khuntia
you can maintain servlet chaining by using:
1. RequestDispatcher
2. include
Step 1: Set the request
request.setAttribute(key,value);
Step 2: Implimanting of RequestDispatcher
RequestDispatcher rsd = getServletContext().
getRequestDispatcher("Servletname");
Step 3: Forward or include the request and response by
rsd.forward(request,response);
rsd.include(request,response);
| Is This Answer Correct ? | 2 Yes | 3 No |
What are the drawbacks of cgi?
Explain the concept of ssi ?
Is there any differance b/w getting servlet context from servlet config and session? if yes then what is that?
what is the difference between Servlet and JSP?Advantage of JSP over Servelt?Any concept present in JSP which we cant implement in Servlet?
31 Answers ABC, Apere, AZTEC, CTS, CybAge, iFlex, Impact Systems, Sara, TCS,
Name the webserver that is used to run Servlets?
What are the methods in HttpSession and their use?
The code in a finally clause will never fail to execute, right?
How can we refresh automatically when new data has entered the database?
What is the advantage of Servlets when compared with other server side technologies?
What is the functionality of actionservlet and requestprocessor?
What is the process for chaining servlet?
Should I override the service() method?