Is there a standard location for “j_security_check” so that i can take a look at it?
A search of my computer does not find the file, just references to it. So either its hidden for security reasons or is it not a file?
I have been locked out of an Application and this is the first place im taking a look at for solutions.
It’s part of the Servlet API and implemented by the servletcontainer. In your case, it’s implemented by Tomcat. More specifically, the
org.apache.catalina.authenticator.FormAuthenticatorclass.The
Constants.FORM_ACTIONis/j_security_check.As to your concrete problem of being locked out, just make sure that you supply the proper username and password. The user database is normally configured by a realm.