security « Page « JSF Q&A





1. How to redirect 2 diferent pages after j_security_check    stackoverflow.com

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

2. How to implement redirect to login-page with Java EE 6/Glassfish    stackoverflow.com

I'm trying to implement a redirect after login, which means I can't use glassfish built-in form authentication settings anymore that handles such things automatically. So first thing's first, I need to ...

3. Display user info on postback from protected pages in JSF 2.0    stackoverflow.com

I have a JSF app with a div on the left that displays the user name of logged in User on the main page. I store the logged in users info in ...

4. JSF form-login-page redirect hits before my filter    stackoverflow.com

I'm trying to implement a remember-me function in my java ee 6 application, but I have issues combining it with the build-in security feature. I have the following configuration in my ...

5. security filter not working on first page    coderanch.com

I have a filter which I want to check to see if the user is authenticated every time a page is requested from within a specific url '/pages/*' and if not redirect to '/login.jsp'. I've written a filter which works and applied it to the url but the first time I request a page it doesn't check. My welcome page is ...