Page 1 of 1

About Question enthuware.jwpv6.2.761 :

Posted: Wed Sep 05, 2012 1:41 pm
by sergey183
Q.
Identify the techniques that can be used to implement 'sessions' if the client browser does not support cookies.
"Hidden form fields" - marked as correct answer.

Why?
Nothing about it in the Servlet 3.0 specification.
I think it's kind of tricky question..

Re: About Question enthuware.jwpv6.2.761 :

Posted: Sun Sep 09, 2012 3:14 pm
by admin
Hidden form fields is a standard HTML concept and is a valid way to maintain a session. The servlet engine has no knowledge of whether a parameter was a hidden form field or a visible form field.

HTH,
Paul.

Re: About Question enthuware.jwpv6.2.761 :

Posted: Mon Sep 10, 2012 7:53 am
by sergey183
thanks