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
Why HttpServlet class is declared abstract?
What is the servletconfig object?
When servlet is loaded?
What is cookie in servlet?
What do you mean by the servlet chaining?
What's the advantages using servlets than using cgi?
What are the kinds of http requests?
What is servlet? Explain
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?
What’s the use of the servlet wrapper classes??
What is meant by cookies?
What are different ways for authentication of servlet?
What is pure servlet?
how many jsp scripting elements are there and what are those?
When is the servlet instance created in the life cycle of servlet? What is the importance of configuring a servlet?