Hi,

I am using Spring 3.1, and was wondering if its pssible to gather extra information in a custom login page,
and then have that information available later on in the Controller that gets called after the login is
processed by j_security_check ?


What I want to avoid is having a default target, whoes purpose is simply to gather more info, if that can already be
done on the login form.


Another use for this may be to pass this information on to the custom Authentication / Authorization classes that I have added for ldap user mappings etc.


Eg:- I want to collect all this on my login form

User ID :
Password :
Domain :

Then I want spring security to "do its stuff"

When I reach my Controller (default taget), I want to reference "Domain"

Is this possible ?

Thanks