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


Please Help Members By Posting Answers For Below Questions

How do you create a cookie using servlet?

584


What is Request Dispatcher?

810


What is string tokenizer?

632


What is the servletconfig object?

538


Can you use javascript in servlets?

606






Which event is fired at the time of setting, getting or removing attribute from application scope?

621


What is the functionality of actionservlet and requestprocessor?

601


How does java thread pool work?

550


How many servlet objects are created?

567


What are the different methods of session management in servlets?

545


When a client request is sent to the servlet container, how does the container choose which servlet to invoke?

581


What is servlet collaboration?

671


What is a cookie What is the difference between session and cookie

601


What are the jobs performed by servlets?

589


What is servlet interface?

711