why The requested resource (/j_security_check) is not available?
843835Sep 10 2002 — edited Sep 25 2003today i try to run login.jsp under Tomcat4.0.4,but get error message:The requested resource (/j_security_check) is not available.can anybody tell me what's wrong? thanks!
The following code is login.jsp:
<html>
<head>
<title>Login Page for Examples</title>
<body bgcolor="white">
<form method="POST" action='<%= response.encodeURL("j_security_check") %>' >
<table border="0" cellspacing="5">
<tr>
<th align="right">Username:</th>
<td align="left"><input type="text" name="j_username"></td>
</tr>
<tr>
<th align="right">Password:</th>
<td align="left"><input type="password" name="j_password"></td>
</tr>
<tr>
<td align="right"><input type="submit" value="Log In"></td>
<td align="left"><input type="reset"></td>
</tr>
</table>
</form>
</body>
</html>