4
votes
1answer
79 views

How to log managed bean name and action method being invoked in a servlet filter

I am working on a web application built on JSF 2 Mojarra. I have a requirement to log some instrumentation information through my servlet filter. To do this I also need to know which ManagedBean and ...
0
votes
1answer
36 views

prettyfaces and jsf: getting null values in action class using filter

hello i am using prettyfaces jsf2.0 i ve created a filter which is checking every request whether user is logged in or not @WebFilter(urlPatterns= {"*.xhtml"} , dispatcherTypes = ...
1
vote
1answer
73 views

WebFilter urlPattern not working

I'm trying to use WebFilter with JSF 2, but my filter not is working. The urlPattern is not recognized. My Filter class: @WebFilter(urlPatterns = {"/rws/*"}) public class AuthorizationFilter ...
0
votes
1answer
48 views

nullpointerexception on dispatcherTypes = {DispatcherType.REQUEST} using prettyfaces

hi i am using jsf2.0, prettyfaces,primesfaces i have created a filter which monitor user session @WebFilter(urlPatterns= {"*.xhtml"} , dispatcherTypes = {DispatcherType.REQUEST}) public class ...
0
votes
1answer
129 views

Filter for User Session Check in JSF 2.0

this is how i solved my problem. :) my pages which i want to protect are located inside cPanel folder. this is my LoginAdmin bean. @ManagedBean(name = "loginAdmin") @SessionScoped public class ...
0
votes
0answers
29 views

Dispatching to Faces Servlet from Servlet Filter?

I have two filters; filter one with /admin/ mapping filter two with .xhtml mapping incoming request URI is /admin/home.xhtml when this request is executed the first filter is worked .and second one ...
0
votes
0answers
130 views

JSF Session Create in Filter failing to Redirect

Based on lot of knowledge I picked up on this forum I have created a filter to support 'remember me' feature in my web app. I am checking for existence of session, session_active status and the UUID ...
0
votes
0answers
340 views

Redirect Custom Session timeout page using spring secuirty

I implemented a session timeout check using Spring Security 3.1 with JSF 2.0. I wrote Servlet Filter and configured into <http>---><custom filter> in spring security xml file. ...
0
votes
2answers
65 views

Webfilter only manages to login user in 2nd response (remember me)

I've been playing around with code inspired from one of balusC's answers. Basicly its a webfilter that tries to login the user if there is a remember me cookie. The login happens so that it first ...
-3
votes
1answer
121 views

Set values for Managed Beans in a servlet filter. [closed]

I have this case: I want to save the user name in a session scoped managed bean after a successful login. I do that login in a servlet filter. How can I access the managed bean from a servlet filter?
0
votes
1answer
323 views

MySQL + JSF 2 login filter

Can someone help me with this error? It says NullPointerException at UserDao.login and LoginBean.loginproject. I m new to the filter in JSF 2. Which attribute is in use from the method ...
0
votes
2answers
134 views

Setting SessionScoped ManagedBean using Servlet API

I have a filter configured in my application that intercepts all the requests and it needs to set the value for a certain bean UserInfoBean named as userInfo which is defined as a ManagedBean and that ...
1
vote
1answer
341 views

Primefaces fileupload filter when web.xml not used

I want to use the primefaces fileupload control in my jboss 7 web application. As I don't use any web.xml (not required with Java EE 6), how can I specify the filter required to make the fileupload ...
0
votes
2answers
101 views

JSF Redirect causes exception in a filter

I have configured an authentication filter for any pages that I wanted to protect. However when it tries to redirect to the login page, I am encountering below error ...
1
vote
1answer
178 views

How to open Pop-Up or Message or Growl when checking authorization wtih Servlet Filter in JSF (Primefaces)

I am doing a project for school. I am using JSF and Primefaces. But to check authorization with Servlet Filter when HTML5 file called in JSF project. Because JSF doesn't support HTML5. Project has a ...
0
votes
1answer
190 views

Access a managed property in filter

In my attempts to find out the reason for the problems stated in this question: JSF2 slow page loading, I would like to time a user session filter I use. I've created a timer that is an ...
0
votes
2answers
329 views

JSF h:commandLink not work with filter

I create simple login system for my jsf project. In project I create filter to check user login status. If login, continue to requested page. If not login or session is destroy, redirect to login ...
0
votes
2answers
807 views

Url pattern to exclude javax.faces.resource from being invoked by servlet filter

I have created a servlet filter to handle session timeout and authentication. @WebFilter(urlPatterns={"/acc/*"}) public class ResourceAuthorizationFilter implements Filter { ... } The pages that I ...
1
vote
0answers
219 views

How can I get session scoped bean in filter from session? (jsf 2.1)

How can I retrieve session scoped bean in filter? I have tried like that, but it returns null. this is my session scoped bean: @SessionScoped @ManagedBean(name="sessionData") public class ...
0
votes
1answer
108 views

Pages restricted by login filter are still accessible by other users

I am using Filters in my login application. I want some pages only accessed by admin. I have kept those pages in admin folder and implemented filters in my project. But pages are still accessible ...
5
votes
1answer
1k views

JSF: How control access and rights in JSF?

I would like to control the access after the user log in my system. For example: administrator : can add, delete and give rights to employee employee : fill forms only ... So after knowing which ...
1
vote
1answer
658 views

DefaultInstanceManager can not access a member of class with modifiers “”

not sure whats wrong here, please assist. this is the exception : SEVERE: Exception starting filter com.bannerplay.beans.LoginFilter java.lang.IllegalAccessException: Class ...
1
vote
2answers
281 views

JSF 2.0; MyFaces; Form submit only with POST

i've got a security question and i don't know, how to do this in JSF. In PHP i can react on a form submit that is defined as POST, that i only want values via POST so there is no way to get an value ...
0
votes
2answers
616 views

JSF 2.0 Flash-scope - cookie path

I have been struggeling with the Flash-scope (I know it is not a "scope" like the others, but often referred to as one) in JSF 2.0. (Mojarra) My problem is that the flash-cookie is bound to the ...
1
vote
1answer
370 views

Remove session attribute when opening Facelets page

I am returning a message from servlet filter to a Facelets page. To transfer the message from servlet filter to Facelets page, I am using a session variable. After the message is displayed, I would ...
3
votes
1answer
268 views

JSF — Filter for javax.faces.resource text replacements

I'm working with Tomcat7 on JSF 2.17 Mojarra. I'd like to place a servlet filter in front of CSS and Javascript requests to /javax.faces.resource/* to rewrites certain text references in our ...
0
votes
1answer
2k views

redirecting from a servlet filter to jsf returns the actual jsf code not rendered to html

below is my code; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package racms; import java.io.IOException; import ...
1
vote
1answer
2k views

JSF request-scoped managed bean http-session causes in-instantiation

I'm using a SessionFilter servlet for validating users and then giving access of the system to them. My restricted files are in a folder named "com.shadibandhan.Restricted". Session filter is working ...
0
votes
2answers
293 views

RequestFilter and SessionBean for authorisation

I am using jsf 2.0 on websphere application server 8. I have a request filter which authorizes an user. The user authenticates himself against an WebSEAL. The userrole is saved in a MySQL DB. My ...
0
votes
1answer
1k views

Servlet filtering not applying on JSF navigation rule

We have servlet filter which verifies couple of session variables before JSF view display. Some how when a navigation rule is invoked in bean using handleNavigation(...) method, filter is not being ...
0
votes
1answer
1k views

JSF2 <h:selectOneMenu and <f:ajax listeners not called after PrettyFaces Filter Navigation

Have an issue with a Java Web App when using JSF + PrettyFaces to handle navigation and bean actions. using versions: JSF - 2.1 PrettyFaces - 3.3.3 Error happens when handling navigation using ...
2
votes
1answer
246 views

Is it possible to create a JSF2 session managed bean inside a filter?

I would like to create and populate a JSF2 session bean inside a filter. The use case is the following: 1) the user authenticate using CAS 2) CAS server populate the attributes of the principal and ...
1
vote
1answer
469 views

object is null in the session attribute map when accessed from servlet filter

I have a servlet filter to force user authentication. It checks for the existence of a non-null object in the HttpSession. For some reason that I cannot figure out, the session contains an object ...
0
votes
2answers
317 views

How to create url mapping in web.xml

i want to create url pattern that lead to filter in jsf2. I tried this code <filter-mapping> <filter-name>filter</filter-name> ...
1
vote
1answer
784 views

JSF file download NullPointerException with view Parameter

I hope I get this one straight: I try to create an JSF 2.0 Page optimized for mobile use on Tomcat 7. Therefore I use Mojarra 2.1.6 and PrimeFaces (Core 3.1.1 and Mobile 0.9.1). My scenario: User ...
11
votes
1answer
8k views

How implement a login filter in JSF?

I would like to block the access of some page even if the user knows the url of some pages. For example, /localhost:8080/user/home.xhtml (need to do the login first) if not logged then redirect to ...
3
votes
1answer
433 views

Servlet filter (autologin) precedence over declarative security checks

Short question. How is it possible to execute servlet filters before any declarative security check is performed? Long question. For my web application I'm trying to manage all my security needs ...
2
votes
1answer
846 views

Web Filter blocking RichFaces

I create a filter and it works fine but my richfaces doesn't work correctly anymore, here is my web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app ...
5
votes
1answer
7k views

How do a web filter in JSF 2?

I create this filter : public class LoginFilter implements Filter { @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ...
3
votes
1answer
999 views

Filter do not initialize EntityManager

I trying to use the Open Session in View pattern, but everytime I try to catch the EntityManager in my ManagedBean the entityManager come NULL here is how I'm doing: package filters; // imports.. ...
5
votes
2answers
3k views

How do I get a SessionScoped CDI bean from inside a Filter?

This question is related to a previous one on writing a session timeout handler. The answer in that thread involved accessing various session-scoped managed beans from the servlet. The ...
4
votes
1answer
2k views

Is there any easy way to preprocess and redirect GET requests?

I'm looking for a best practise answer. I want to do some preprocessing for GET requests. So e.g. if the user is not allowed to see the page, redirect him to another page. But I don't want to use ...
2
votes
1answer
801 views

after web filter all images gone in jsf page

I am using spring security with jsf 2. I have a filter that control if db access is ok in each page. : public void doFilter(ServletRequest aReq, ServletResponse aResponse, FilterChain aChain) throws ...
0
votes
0answers
561 views

UrlRewriteFilter outbound-rule isn't applied to form

I have started using Tuckey's UrlRewriteFilter on my JSF 2.0 web application and it works well except for a form on my site's home page. Here is the outbound rule: <outbound-rule> ...
4
votes
1answer
2k views

What is the correct way to implement login with redirect using JSF 2.0?

Part of my site should be accessible only to authorized users. Let's assume user would enter page a.html which belongs to the authorized-only part. If I was to use servlets/JSP I could write a ...
4
votes
1answer
2k views

Https on JSF 2, for protected resources and login

I have a managed bean with 2 attribute: userName & password (with its respective getters and setters methods), and a login() method that access the database to verify login credentials. My ...
0
votes
1answer
62 views

I need to have “profile url” functionality in my jsf application, is there any way apart from filters I can achieve this?

I need to have "profile url" functionality in my jsf application, is there any way apart from filters I can achieve this? For ex: www.website.com/dan.thomas should take me to the Dan Thomas`s page ...