I heard that ebay uses Java, but I didn’t find jsessionid cookie when I signing in.
Are there alternative techniques exists to track users sessions?
How do you avoid using jsessionid?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are may, many different options to achieve this. The simplest one I can think of is to store your own cookie and use memcache (or similar) to share the session data between all your servers.
With this solution, you don’t have the problem of your session living on only one server.