I'm attempting to do form based security and I keep getting a 404 error when
I click the submit button.
I'm guessing I'm missing some type of configuration in the server.xml.....
The form I am using is:
<form method="POST" action="j_security_check">
<input type="text" name="j_username"/>
<input type="password" name="j_password"/>
<input type="submit" value="Submit">
</form>
And I have the following in my web.xml
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/login-error.jsp</form-error-page>
</form-login-config>
</login-config>
Can anyone help me out here?
--
Sloan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]