Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7981391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T10:21:18+00:00 2026-06-04T10:21:18+00:00

Is there a standard location for j_security_check so that i can take a look

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T10:21:20+00:00Added an answer on June 4, 2026 at 10:21 am

    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.FormAuthenticator class.

    227        // Is this the action request from the login page?
    228        boolean loginAction =
    229            requestURI.startsWith(contextPath) &&
    230            requestURI.endsWith(Constants.FORM_ACTION);
    231
    232        // No -- Save this request and redirect to the form login page
    233        if (!loginAction) {
    234            session = request.getSessionInternal(true);
    235            if (log.isDebugEnabled())
    236                log.debug("Save request in session '" + session.getIdInternal() + "'");
    237            try {
    238                saveRequest(request, session);
    239            } catch (IOException ioe) {
    240                log.debug("Request body too big to save during authentication");
    241                response.sendError(HttpServletResponse.SC_FORBIDDEN,
    242                        sm.getString("authenticator.requestBodyTooBig"));
    243                return (false);
    244            }
    245            forwardToLoginPage(request, response, config);
    246            return (false);
    247        }
    248
    249        // Yes -- Validate the specified credentials and redirect
    250        // to the error page if they are not correct
    251        Realm realm = context.getRealm();
    252        if (characterEncoding != null) {
    253            request.setCharacterEncoding(characterEncoding);
    254        }
    255        String username = request.getParameter(Constants.FORM_USERNAME);
    256        String password = request.getParameter(Constants.FORM_PASSWORD);
    257        if (log.isDebugEnabled())
    258            log.debug("Authenticating username '" + username + "'");
    259        principal = realm.authenticate(username, password);
    260        if (principal == null) {
    261            forwardToErrorPage(request, response, config);
    262            return (false);
    263        }
    

    The Constants.FORM_ACTION is /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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a standard Java library that handles common file operations such as moving/copying
How can I find the standard site_perl (non-arch specific) location? Is it safe to
For the c++ STL, there is a de-facto standard location (besides the de-jour standard
is there a standard way to encode the user location (country, state/region, town), so
Are there standard file names for Terms of Use and Privacy Policies? For some
Is there a standard convention for the types of files that go in \Windows\
Is there a standard C function similar to strtol which will take a char*
Is there a standard or common way in C++ to handle static strings that
Is there an function in R that does the same job as Matlab's bar
Is there any kind of a standard for the location (padding) and size of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.