Hi all,
i'm using form login as:
And in my login form i'm using GET methode to data to j_spring_security_checkCode:<form-login login-page='/login.iface' default-target-url='/index.iface' always-use-default-target='true'/>
When i clic the submit bouton no authentication take place.Code:<form action="/VIPNETWEB/j_spring_security_check" method="GET" name="f"> <table> <tr> <td>User:</td> <td><input name="j_username" type="text" value="" /></td> </tr> <tr> <td>Password:</td> <td><input name="j_password" type="password" /></td> </tr> <tr><td colspan="2"> <input name="submit" type="submit" /></td> </tr> <tr> <td colspan="2"> <input name="reset" type="reset" /></td> </tr> </table>
But when i use POST methode instead of GET authentication takes place.
My probleme is that i need to use GET methode so how could i configure my form-login tag to accept GET methode.
best regards.


