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


Please Help Members By Posting Answers For Below Questions

List out the difference between ServletConfig and ServletContext?

771


how many jsp scripting elements are there and what are those?

766


What is the difference between a generic servlet and http servlet?

701


List the Different types of servlet?

767


What is a servlet context object?

839


Explain the difference between servlet and cgi?

792


What is the difference between the include() and forward() methods?

781


Why do we have servlet wrapper classes?

769


What is the life-cycle of servlets?

835


Explain the servlet filter.

705


What is difference between PrintWriter and ServletOutputStream?

970


What are the ways to handle multi-threading in servlets?

801


What is the inter-servlet communication?

904


How to get the IP address of client in servlet?

809


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 ?

802