Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I facing a problem while maintaining single session in my servlet, communicating with two servers. I am using session.redirect() and session.farward() but i dint get result please help me.

share|improve this question
I do not understan your problem. session.redirect does not exist. You should provide some code snippets. – home Jul 27 '11 at 11:57

1 Answer

The "client side" of the two servlets should pass the JSESSIONID cookie along on every HTTP request, exactly as a normal webbrowser does. This way the "server side" of the two servlets will be able to obtain the right HttpSession object back in the HTTP request/response context.

I have no idea how you're communicating between the servlets, so I can't post a more detailed answer as to how to maintain the session cookie in subsequent requests.

At least, the session.redirect() and session.farward() makes no utter sense. The HttpSession object does not have those methods. With giving a RequestDispatcher instance the wrong variable name of session you also won't help yourself and others much.

share|improve this answer
thanq sorry for wrong code. – user859031 Jul 27 '11 at 12:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.