How to pass session values from one servlet container to another servlet container? or how can we get session values of one container in another container?
Answer Posted / satishkumar vishwakarma
We can Pass Session value from servlet container to another
with the help of Session Object
E.g. I have two Servlet named ServletA and ServletB if i
want to pass value from ServletA to ServletB using Session
Object.
i.e. HttpSession session = request.getSession();
//Now i want to pass my name from ServletA to ServletB
String s = "Satishkumar V";
session.setAttribute("myname",s);
//Now i want to display this name in ServletB Then we will
write the following code in ServletB
HttpSession session = request.getSession();
String s = (String)session.getAttribute("myname");
//Now we can display the value of s in anywhere in Servlet B
out.println("<h1>"+s+"</h1>");
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Is that servlet is pure java object or not?
What is url encoding and url decoding
What are Servlets?
What are the benefits of using servlet over cgi?
What is servlet and its advantages?
Difference between get and post in java servlets?
What are the functions of Servlet container?
Are Servlets Thread Safe? How to achieve thread safety in servlets?
Is tomcat a servlet container?
What is a servlet?
What do you mean by chaining in servlet?
What is servlet attributes and their scope?
Who is responsible to create the object of servlet?
How can you create a session in servlet?
Can we override servlet service method?