Problems with sessions

Hello, How could I be able to handle cases in which the client does not choose to join a session, such as when cookies are intentionally turned off.I need sessions to pass parameters through different jsps.Thank you.
[244 byte] By [ragonzalez] at [2007-9-26 4:36:00]
# 1

Clients cannot express a desire not to join a session by turning cookies off.

Even if cookies are turned off, session can still be maintained at server-side.

For example, in case of HREFs, one could supply the session ID as an extra parameter in the query string. This is called URL rewriting.

In case of form submission, one could supply a hidden field that has the session ID as its value.

See http://java.sun.com/j2ee/tutorial/doc/Servlets11.html#65605

neville_sequeira at 2007-6-29 17:53:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...