This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
If a user has disabled cookies for the browser with wich navigates how is it posible to use objects (beans) with the session scope ? It is posible to send parameters from on page to another encoding all in the url and taking care of all the links in the pages , but couldn't that be done in another way ? Thanks for any reply.
Tom P
Ranch Hand
Joined: May 06, 2000
Posts: 88
posted
0
The only way is to put the session information into the URL. This can be done by using encodeURL(String urlToEncode) see: java.lang.String)" TARGET=_blank rel="nofollow">http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/http/HttpServletResponse.html#encodeURL(java.lang.String)
Aaron Robinson
Ranch Hand
Joined: May 15, 2000
Posts: 46
posted
0
You can also put data in hidden fields in the HTML.