Tagged Questions
j_security_check is a default URL in web applications using JAAS, the Java Authentication and Authorization Service, to implement security.
3
votes
2answers
850 views
JSF J_security_check How to get number of connected users and their role?
I get the username of the connected user (using j_security_check) this way, through a managed bean:
......
username = ...
2
votes
1answer
47 views
Why is Realm setting required in Server.xml and not web.xml
I am working on a Java application for a while. I primarily work on .NET Platform. Although I feel lot of concepts are common between these two platforms but there are few areas where I am finding ...
2
votes
1answer
494 views
How can I get j_username on my index.jsp after successful authentication with j_security_check?
I'm using j_security_check on a login.jsp. The server is GlassFish Server 3. It all works, when the user is authenticated it then opens index.jsp. My problem is I need to get j_username in my ...
2
votes
3answers
3k views
Strange 404/j_security_check error with Websphere 6.1
I have a websphere 6.1 configuration and the application is running, but some requests go to j_security_check but the last one (there are filters associated with J_security_check) will generate a 404 ...
1
vote
1answer
55 views
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 ...
1
vote
0answers
81 views
Programmatically using j_security_check
I have page like localhost:7001/MyServlet. I am making a http connection request from like below
String url = "http://localhost:7001/MyServlet"
PostMethod method = new PostMethod(url);
HttpClient ...
1
vote
0answers
143 views
CDI SessionScoped Bean instance remains unchanged when login with different user
I've been looking for the workaround of this problem for rather plenty of time and no result, so I ask question here.
Simply speaking, I'm using a CDI SessionScoped Bean User in my project to manage ...
1
vote
1answer
194 views
post login operation with j_security_check
I am using form-based authentication and j_security_check in my j2ee application which runs on glassfish 3.1.
Problem is when login succeed I have to update some data related to authenticated user.
...
1
vote
0answers
390 views
j_security_check vs Programmatic Security
I'm building a Web application using jsf, ejbs and jpa.
I currently use form based j_security_check to handle authentication.
I need to implement support for cookies ie "Remember me" option.
Also I ...
1
vote
1answer
684 views
Authenticate user with j_security_check
I am working on one application. It is using j_security_check to authenticate user.
It is working fine. It authenticates user. I want to display login failure page. For this i am using
...
1
vote
1answer
298 views
Getting HTTP 404 Not Found with multiple requests while using form based authentication
I am having an issue with Tomcat and Websphere when users try to login in our application.
If a user presses multiple times the return key after entering his/her login details, the form is submitted ...
1
vote
2answers
1k views
HttpServletRequest#login() not working in Java
j_security_check just doesn't seem enough for me to perform login process. So, instead of submitting the form to j_security_check i created my own servlet and in that i am programmatically trying to ...
0
votes
1answer
76 views
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:
<security-constraint>
...
0
votes
1answer
62 views
How to pass other data with j_security_check?
I use IBM Websphere Application Server 6.1 and my login screen have controls as:
<form action="j_security_check" method="POST">
User Name: [ Admin ] <<-- j_username
...
0
votes
1answer
103 views
Passing additional parameters to j_security_check
In our application we need to let user select the desired datasource when logging in with form-based authentication, and I'm not sure if it's at all possible when using standard form-based ...
0
votes
1answer
166 views
How can I simulate form authentication in Tomcat using JMeter?
I'm very new to JMeter, but I have some ideas of what JMeter could be used for. Also I have a Tomcat application with form authentication enabled. The thread I'm trying to use consists of:
HTTP ...
0
votes
1answer
187 views
How to change the original requested page used by j_security_check?
When an unauthenticated user request some resources, he will be redirected to a login page but j_security_check will keep the original requested resource. If the user login successfully, it will be ...
0
votes
1answer
31 views
Login form for webapp refreshing endlessly on submit in IE 8, works fine in Firefox
I have a simple username/password form that on submit does a j_security_check on an LDAP for user credentials. Improper credentials behave as expected in both browsers, but when you give the form ...
0
votes
3answers
123 views
How can I get the logged-in user's username using JDBCRealm?
I'm running Glassfish 3.0 and I'm implementing JDBCRealm for login authentication. The username and roles are saved in a table called usertable. The authentication is working as expected.
But the ...
0
votes
1answer
203 views
j_security_check for jsf app not working in IE
I have a simple jsf app developed and working on tomcat 6.0.13. I added some security contraints to the entire application by adding the usual setting in web.xml.
When I now deploy the application ...
0
votes
0answers
106 views
How to test LDAP through container based authentication?
Dear fellow developers.
We're facing some annoying LDAP related problems in one of our corporate server environment and to be able to track down these issues, I'd need an application that can use the ...
0
votes
1answer
538 views
how to redirect to j_security_check in the managed bean?
i've successfully run a based FORM authentication project and trying to do the same with an icefaces project. In other terms i want to use ice:form instead of form, so i was wondering if i could ...
0
votes
1answer
272 views
J2EE: Unathenticated POST and j_security_check
I tried to do some research on this and came across the following question on another site:
http://www.theserverside.com/discussions/thread.tss?thread_id=36561
Unfortunately, the answer there was to ...
0
votes
2answers
156 views
J_scurity_check fails in Firefox 4
The applications works fine in Firefox3.6 ,all versions of IE. I downloaded Firefox 4 and tried to login. When I entered user name and password and click on submit button, It just clears the labels ...
0
votes
1answer
652 views
Request to j_security_check return 408 error only with right paramters
I want to send request to j_security_check from servlet and get auth cookie from response. Code:
String url = "http://someserver:8080/j_security_check?j_username=user&j_password=qwerty";
...
0
votes
0answers
434 views
Invalid Session problem in IE with j_security_check
I am getting the below error message when i try to log in through j_security_check in IE v8. We are using Weblogic 10.3
java.lang.IllegalStateException: HttpSession is invalid
at ...
0
votes
0answers
523 views
j_security_check was not found on this server
I have simple web application which use Form base authentication, it is running well on the local server however when I upload it to my space on remote server there is a mistake appears when I try to ...
0
votes
1answer
593 views
Log in (form-based) from JSF page
Using JSF 1.2 and RichFaces 3.3.1 on JBoss 4.2.3.
I've just started on a JSF Application. It uses XHTML files for most of its content, and a login.jsp with form-based authentication for logging in, ...
0
votes
1answer
179 views
Passing data to j_security_check with python
I have a j_security_check page on a server, and I need to pass data to it. I use Python urllib2 module, sending POST-request with j_username and j_password as parameters. The problem is that I have ...
0
votes
1answer
631 views
How to redirect 2 diferent pages after j_security_check
I have a login page using j_security_check and I need to redirect to different pages depending on the user's privileges. For example, user A has to be redirected to page1 and user B to page2.
How can ...
0
votes
1answer
590 views
j_security_check url problem
hope you can help me with this:
I'm working with j_security_check and have this problem
I have a profile page that must be restricted to any unloged user,
so i add a security constraint in the ...
0
votes
2answers
274 views
jmeter websphere 6.1 j_security_check
Can someone explain to me how to get jmeter to login. I have an http request that goes to apps/j_security_check. I have added two parameters j_username and j_password. It does not seem to ...
0
votes
1answer
526 views
JSF2 Form Authentication whit database users
I'm currently using JSF 2 and icefaces framework for javascript
I'm having some problems with j_security_check based on the url(that's not the point), that my taste is very strict
my question is:
Is ...
0
votes
1answer
750 views
Anyone have BlazeDS working with WebLogic Security (j_security_check)?
I'm working on a Flex implementation (currently using SDK 3.5) on WebLogic 10.3 (11G.) We originally used Glassfish v2.1.1 with zero issues (there was an active directory group lookup bug but it did ...
0
votes
1answer
1k views
Tomcat behind Apache: Using SSL with j_security_check
I have a little problem with using SSL on a Tomcat that is behind Apache. I have used Google all morning to try to find a good solution, but nothing so far.
As a part of my SSL VirtualHost ...