• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Submitting additional information during authentication?

 
Ranch Hand
Posts: 109
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have form authentication working. In my deployment descriptor, I have the following along with the appropriate html files that describe the form submit to 'j_security_check' and acquire values for 'j_username' and 'j_password'.
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.html</form-login-page>
<form-error-page>/denied.html</form-error-page>
</form-login-config>
</login-config>

I need to acquire another value on the login page (e.g., the role that the user wants to assume). Can I do this or is the login page restricted to only acquiring the username and password fields? I've tried placing other form fields in the html and using request.getParameter() to obtain my value but I'm not having much luck.
Thanks!!! Kelly
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic