Hi I am new to spring security and I am trying to implement multiple authentication manager for multiple Login Page. But I am stuck as I am not able to create a customized login page.This is my Security.xml
<http auto-config='true' use-expressions="true" authentication-manager-ref="customAuthenticationManager1" >
<intercept-url pattern="/**" access="isAuthenticated()" />
<form-login
login-page='/Admin_Login.jsp'
login-processing-url="/j_spring_security_check.action"
default-target-url="/home.jsp"
always-use-default-target="true"/>
<logout logout-success-url="/login.html" />
<logout />
</http>
My Login page is as follows :-
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ADMIN LOGIN</title>
</head>
<body>
<form action="/j_spring_security_check" method="POST">
<label for="username">User Name:</label>
<input id="username" name="j_username" type="text"/>
<label for="password">Password:</label>
<input id="password" name="j_password" type="password"/>
<input type="submit" value="Log In"/>
</form>
</body>
</html>
But when I try to login it is not goin into Authentication manager . Its giving
HTTP Status 404 - /j_spring_security_check error. So can some one tell where I am going wrong.