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 is the use of servlet context?
can i modify the data which are generated by the servlet
How can an existing session be invalidated?
What is the use of Servlets?
Can we override servlet service method?
Some examples where generic servlet is used?
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?
Hi Friends, Suppose you have a web appliction which consists of 100 clients are connected with Connection pooling and they are associated with 100 connection objcet and connected with DB sever,Due some problem DB-Server suddenly crashed and server came to down state for a while after few minutes DB-server once again up,Now how will I manage my Pool Management with my 100 clients...can any one tell me??????????????????
What is the difference between 2 types of servlets?
What is httpservlet and how it is different from genericservlet?
What is servlet and its life cycle?
Define servlet mapping?