| Author |
Struts & FORM authentication
|
Pavels Hlopoks
Ranch Hand
Joined: Feb 05, 2007
Posts: 31
|
|
Hello! I have a problem! Now I need change authentication system in small project. This project is created using STRUTS. Is possible to do LOGIN form using FORM authentication? Here is login page source: " <html:form action="/authorization" method="post" > <DIV align="center"> <table name="detail" align="center"> <tr> <th>User</th> <td> <html:text property="user" styleId="user"></html:text> </td> </tr> <tr> <th>Password</th> <td> <html assword property="password" /> </td> </tr> <tr> <th></th> <td> <html:submit value="Login" styleClass="button"></html:submit> </td> </tr> </table> </DIV> </html:form> " if I change form action to j_security_check, after submit form go to j_security_check action in struts-config.xml. Thanks!
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
That's not going to work. My suggestion would be to remove the Struts tags and replace them with plain HTML tags. This applies to the login JSP only. All other pages need not be changed.[LIST]
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: Struts & FORM authentication
|
|
|