I am setting the request attribute in managed bean before redirect the request through faces-config as follows:
FacesContext.getCurrentInstance().getExternalContext().getRequestMap().put("foo","bar");
return "redirect_success";
After this i m trying to access this request attribute in my filter through pre creating FacesContext
FacesContext.getCurrentInstance().getExternalContext().getRequestMap().get("foo");
Finally not able to get this attribute in filter itself but i am able to get the same attribute again in second managed bean very easily. Is there any way to get it in filter itself?