How do I know what I do wrong?
I have a glassfish JPA JSF project and I'm currently adding security with jdbc.
WARNING: WEB9102: Web Login Failed: com.sun.enterprise.security.auth.login.common.LoginException: Login failed: Security Exception
What additional information is needed to help me?
if I use the SHA256 I get:
SEVERE: SEC1111: Cannot load group for JDBC realm user [admin]. WARNING: WEB9102: Web Login Failed: com.sun.enterprise.security.auth.login.common.LoginException: Login failed: Security Exception
my login code:
<form method="POST" action="j_security_check">
Username: <input type="text" name="j_username" value="#{kwetterbean.name}"/>
Password: <input type="password" name="j_password" value="#{kwetterbean.password}"/>
<input type="submit" value="Login" />
<input type="reset" value="Reset" />
</form>