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?
Answers were Sorted based on User's Feedback
Answer / mohit rana
It's simple just use session (session object).
HttpSession session = request.getSession();
session.setAttribute(String obj);
and get the above value on other container
session.getAttribute(String obj);
| Is This Answer Correct ? | 16 Yes | 5 No |
Answer / 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 |
Answer / karnakar thallapalli
Generally we use session binding listeners
your class must implements HttpssionBindingListenre(not suer class name) and and implement its methods..............
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / animesh kumar
Session Values Can Be passed from one servlet container to
another in FOUR ways :
1. URL rewriting
2. Hidden Form Fields
3. Cookies
4. Using a session Object
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / vemula bojjanna
by using setAttribute()and getAttribute()
for example list is one variable in one servlet like
List l=new list();
l.add("bujji");
l.add("vemula");
u set this value from this servlet by using
req.setAtribute("list",l);
by using getAtribute() u can use the list value of first
servlet into second servlet like
req.getAtribut(list);
| Is This Answer Correct ? | 3 Yes | 14 No |
When should you prefer to use doget() over dopost()?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
what is the difference between Servlet and JSP?Advantage of JSP over Servelt?Any concept present in JSP which we cant implement in Servlet?
31 Answers ABC, Apere, AZTEC, CTS, CybAge, iFlex, Impact Systems, Sara, TCS,
What is the web server used for running the Servlets?
How do you configure a centralized error handler in servlets?
what is the difference between servlets and struts?
Write a servlet to upload file on server.
What is the difference between context parameter and context attribute?
What are the different types of servlets?
How can you start a jta transaction from a servlet deployed on jboss?
What methods do you use in servlet - applet communication?
What are some disadvantages of storing session state in cookies?