Access login page data after user is authenticated
Hi all,
I am very new to Spring, and I will do my best to explain my problem.
I have a login.jsp to perform OpenID authentication, and there are also some other values contained within the login.jsp, for example a hidden input
HTML Code:
<pre><input type="hidden" name="Language" value="English"></pre>
When the authentication succeeded, I want to be able to access the values from the login.jsp, such as the "Language" value is "English". So the flow would be
1. Save the value in the hidden form in somewhere.
2. OpenID authentication.
3. Access the value of the hidden form in somewhere.
So, my problem is where and how can I save those values.
Thanks.