Questions tagged [j-security-check]

j_security_check is a default URL in web applications using JAAS, the Java Authentication and Authorization Service, and Spring Security. It is used to implement security.

j_seucrity_check is the action that needs to be set on a html form when using Java Servlet Form Authentication (container security).

See the Java Tutorial for more information.

163 questions
2
votes
0 answers

creating an account lockout system with j_security_check

Hi friends i would like to create an account lockout system with form based authentication. currently i am using j_security check which will get my j_username and j_password from the jsp page and compare with the database, which will redirect me to…
user3732861
  • 41
  • 1
  • 2
2
votes
1 answer

Java EE form login with load balancer transforming https to http

I have a problem and I believe it boils down to a misfit with our load-balancer, webserver(ihs), https configuration and Java EE form security with j_security_check. I understand that when a client tries to hit a secure page, the server (websphere)…
dr jerry
  • 9,768
  • 24
  • 79
  • 122
2
votes
2 answers

how to configure jboss/tomcat to prevent j_password plain text content in log file

Is there a way to configure Jboss/Tomcat to prevent j_password (JAAS) plain text content in log file? (23:03:24,141 DEBUG [org.apache.tomcat.util.http.Parameters] (http-localhost-127.0.0.1-8080-3) Start processing with input…
2
votes
2 answers

How to perform j_security_check user credentials check in Vaadin?

I have an old web application which I need to migrate to Vaadin. In the old app there is a page which asks the user for login and password. The JSP page looks like this:
Glory to Russia
  • 17,289
  • 56
  • 182
  • 325
2
votes
1 answer

j_security_check returns 500 (Internal Server Error)

Im trying to do a Worklight form based authentication following this guide: Using WebSphere DataPower as a Security Gateway for Protecting Mobile Traffic. Iim using a WebSphere Application Server 8.0.0.6, Worklight 6.0.0(EE)and when i tried to…
2
votes
1 answer

How to trigger Bean after j_security_check complete authentication in Java

I'm quite new to java web page environment. Recently I try to develop an E-Business platform by using Java. Hence, I'm using j_security_check Form-Based as my authentication tool. It was successfully to re-direct to desire page after authentication…
jc88
  • 471
  • 1
  • 5
  • 12
2
votes
1 answer

JSF / Java EE login without requiring a protected resource

In a JSF2 / Java EE 6 web application using container-managed security, form-based authentication (j_security_check) requires a protected page to be requested, after which the container handles the login process for you, redirecting the browser to…
2
votes
3 answers

How to check if a user is logged in when using auth-method FORM

I am using auth-method FORM with apache tomcat to authenticate users. I am using the default j_security_check action. If a user has signed in, I must display a Sign out link. Else a sign in link. How do I check if the user has signed in? Also, how…
Sanjay
  • 103
  • 1
  • 2
  • 5
2
votes
1 answer

Where does one start with Weblogic and j_security_check?

I am absolutely new to Weblogic and j_security_check. In my readings over the past days, all I see is the order of operations for the call protected data on a server and how it gets routed to the j_security_check. (e.g. j_security_check…
Elijah M
  • 29
  • 1
  • 2
2
votes
1 answer

JSF Authentication: cannot intercept error messages

I have developed a simple login form to be used in my JSF + PrimeFaces page:
perissf
  • 15,979
  • 14
  • 80
  • 117
1
vote
1 answer

Switch login in j_security_check

I am using the Tomcat and my application is in GWT. Login mechanism is being managed by tomcat using j_security_check. Now I am able to login properly in the application. But after login to the application when I click on any button I should be able…
vbjain
  • 547
  • 2
  • 7
  • 23
1
vote
1 answer

Auto Login using j_security_check in tomcat

i am new to smartGWT . i want to create auto login using j_security_check in tomcat. currently i am simple login done using j_security check, but now i want to create auto login page on which admin can select user than login will be change by that…
Dipesh Gandhi
  • 765
  • 1
  • 13
  • 31
1
vote
1 answer

j_security_check gives 403 page with correct credentials

I get a 403 error when I enter the correct credentials in my login.jsp page. Here is my web.xml: Test
segFault
  • 1,228
  • 2
  • 18
  • 41
1
vote
1 answer

Prelogin filter before j_security_check

I currently have a form based login in my application which is developed on Jboss portal server. I wish to do some pre login validation and redirect user to another page in case of a condition being true. How can I intercept the request before…
Ankit
  • 3,083
  • 7
  • 35
  • 59
1
vote
1 answer

j_security_check gives 403 page when username and password are correct

I am implementing FORM based authentication with j_security_check and I am stuck with the following problem now: Ok here are my config files: web.xml: Efood Security
ysakiyev
  • 451
  • 1
  • 9
  • 17
1 2
3
10 11