How do you pass the data from one servlet to another
servlet?
Answer Posted / kuru
for example if you want to pass your name from one servlet
to another,
in fiest servlet file....
String name = "Tom"
request.setAttribute("name",name);
RequestDispatcher dis = request.getRequestDispatcher
("Servlet2");
request.Forward(request,response);
in second servlet file....
request.getAttribute("name");
//this line will display "Tom"
Is This Answer Correct ? | 46 Yes | 20 No |
Post New Answer View All Answers
List out the difference between ServletConfig and ServletContext?
how many jsp scripting elements are there and what are those?
What is the difference between a generic servlet and http servlet?
List the Different types of servlet?
What is a servlet context object?
Explain the difference between servlet and cgi?
What is the difference between the include() and forward() methods?
Why do we have servlet wrapper classes?
What is the life-cycle of servlets?
Explain the servlet filter.
What is difference between PrintWriter and ServletOutputStream?
What are the ways to handle multi-threading in servlets?
What is the inter-servlet communication?
How to get the IP address of client in servlet?
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?