The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
47 views

handleNavigation not working in PhaseListener

I have a PhaseListener to control the user access to some pages, if the user is not logged he is redirected to loginpage. The problem is that my method handleNavigation is not redirecting the user. ...
0
votes
0answers
79 views

phase listener UIComponent bean getter

I'm trying to implement Authorization on JSF2 with Custom Annotation and ActionListener (Custom Annotation JSF) but ActionListener doesn't intercept getter calls from view to backing bean during ...
1
vote
1answer
150 views

flash message not displaying after redirect from f:phaselistener

I have an issue with understanding how flash works in the jsf lifecycle. I am trying to redirect to a different page from a phase listener through a normal get request and at the same time adding a ...
0
votes
1answer
142 views

Prevent af:fileDownloadActionListener action event

Background Using JDeveloper 11.1.2.3 to create a report download button using fileDownloadActionListener as follows: <af:commandButton text="Run Report" id="submitReport"> ...
2
votes
1answer
135 views

How to check authorization when HTML5 file called in JSF project

I define a PhaseListener for to check authorization in JSF project. But it doesn't work for HTML5. Even if I add to url=*.html for servlet mapping in web.exml, it doesn't work for HTML5. Because JSF2 ...
0
votes
1answer
82 views

How to activate phaselistener when HTML5 file is called in JSF

I define a PhaseListener in JSF project. It is working when *.xhtml file is called in browser. But It is not working when *.html5 file is called in browser. Can do I do phaseListener for? If I can ...
1
vote
2answers
154 views

Phase Listener and Command Button

The methods public void beforePhase(PhaseEvent event) public void afterPhase(PhaseEvent event) are being called AFTER the method associated with the <p:commandButton value="Login" ...
0
votes
0answers
142 views

partialSubmits dont work after jQuery.ajax is handled by PhaseListener

I am trying to add jQuery UI Autocomplete to a com.icesoft.faces.component.ext.HtmlInputText (Icefaces 1.8.2). I made it and the autocomplete works fine. Now do not laught too much cause i dont have ...
0
votes
1answer
72 views

Is it possible to annotate a backing bean method to be called on a phase?

I need an initializer method in the backing bean to be called after components are bind. @PostConstruct is called before component bindings. Is there any JSF annotation for methods which cause method ...
2
votes
1answer
256 views

Cannot reference ViewScoped Managed bean from PhaseListener in JSF 2.1 app

I've tried every solution from a couple dozen google searches: getRequestMap, ElResolver, evaluateExpressionGet and so on. Nothing, absolutely nothing, works. I get null every time. Here is the ...
0
votes
2answers
1k views

How to retrieve a session scoped managed bean in a PhaseListener?

I'm having troubles in setting an Authorization Listener (that implements PhaseListener) to manage authentication and autorization. More specifically, I set a session scoped bean called SessionBean: ...
2
votes
2answers
467 views

How to get invoked method's name from PhaseEvent in JSF

I have this PhaseListner: public class CheckAccessInterceptor implements PhaseListener { private static final long serialVersionUID = -311454347719850720L; private static Logger logger = ...
1
vote
1answer
144 views

Phase listener in composite component not called ever

I have a composite component: <cc:interface componentType="com.example.MyComponent"> <!-- ... --> </cc:interface> <cc:implementation> <f:phaseListener ...
0
votes
2answers
708 views

JSF Session Expired Phase Listener If Browser Is Closed

In cases where the user has closed the browser and walked away, I want to log when the session times out. For example as a system induced log out as opposed to user request (I already have working and ...
0
votes
2answers
300 views

JSF 2 — Get instance of a PhaseListener from a managed bean

Is there a way to get the current instance of a PhaseListener via el context or application context?
0
votes
1answer
168 views

JSF Different Views for different user´s permissions

I am trying to implement user control in my JSF Application. I need different pages for users with different permissions. What´s the best way to do it? One idea I had is making a PhaseListener that ...
0
votes
1answer
187 views

PhaseListener : beforePhase method not called on form submit

I'm trying to set the focus to an inputText which has an error. When I click to navigate to my form from another page then my beforePhase() code is hit. However in the form once I click submit my ...
2
votes
2answers
266 views

JSF 2.0 dynamically controlling which values get posted back based on CSS

I have this form with ~170 individual text boxes with values in a session scoped bean. There is a requirement to only submit values when the component has a certain CSS class. The way I originally ...
1
vote
0answers
87 views

How to read bean validation from a component

I'm trying to automatically add a '*' to required fields on my JSF pages using a simple phase listener, using uiInputObject.isRequired(), but this seems to work only when the required attribute is ...
1
vote
2answers
327 views

Invalidating session with CDI+JSF not working

I'm trying to implement a logout in my application, so I made this: public String logout(){ try{ FacesContext facesContext = FacesContext.getCurrentInstance(); ExternalContext ...
0
votes
1answer
487 views

Using an PhaseListener to intercept the rendering phase

I am calling a function in a backing bean, but before rendering jsf page, I need to make some operations that depend on the jsf page that will render (this page changes from one call to another). I ...
3
votes
2answers
308 views

How to run a PhaseListener before all Filters?

I have a phaseListener and more then one filter. I want to know if there is a way to create priority. I want phaseListener will be first and then all the filters. I am using the url mapping /* in ...
1
vote
0answers
502 views

Accessing managed beans inside a Restore View phase listener [closed]

I have a Phase Listener in JSF 2 which does some work that needs access to two request scoped beans which I have included at the top of the Phase Listener class as @ManagedProperty objects. However, ...
1
vote
1answer
819 views

JSF PhaseListener viewId always one behind

Im trying to prevent users to access special pages with a phaselistener. for that reason im trying to figure out on which page they try to access. but my problem is, i only get the page they where ...
2
votes
0answers
720 views

Why is my PhaseListener not recognized as implementation of javax.faces.event.PhaseListener?

I have a JSF-Application with a custom PhaseListener that works fine on Tomcat 6.0.24. Server startup looks like: INFO: Starting Servlet Engine: Apache Tomcat/6.0.24 26.01.2012 09:54:21 ...
1
vote
4answers
2k views

How to access a @Named bean in PhaseListener?

We are using JBoss 7.1, MySQL/PostgreSQL DB, JSF 2.0 with CDI beans. I have to implement authentification based on DB by login and password. We have a managment (administration) portal. When the ...
1
vote
0answers
236 views

Evaluate EL in the bean validation message before it is rendered

I am trying to evaluate validation messages before rendered to UI. The reason for all this I am trying to do is, if i use @NotEmpty(message="{person.lastName.notNull}") private String lastName; ...
5
votes
1answer
10k views

How to implement a PhaseListener which runs at end of lifecycle?

How can I implement a PhaseListener which runs at end of the JSF lifecycle?
0
votes
1answer
352 views

Is it possible to load dynamically a Phase Listener with JSF 1.2?

I have been using a Phase Listener to debug my JSF application. Now I'm wondering if it's possible to load it dynamically depending on, for example, a system property is set or not (so I can commit ...
1
vote
1answer
303 views

How to register a JSF 1.2 PhaseListener in a Servlet.init()?

Is it possible? FacesContext.getCurrentInstance() returns null.
1
vote
1answer
810 views

JSF 2: Change rendered atribute of a component on phase listener

Hy guys, In JSF 2 How can I change the rendered atribute of a h:InputText component using a PhaseListener. Before the jsf page be rendered I have to verify all id of the h:inputtexts, and after that ...
5
votes
2answers
2k views

How to apply a JSF2 phaselistener after viewroot gets built?

In my JSF2 application I have a phaselistener that needs to be executed before RENDER_RESPONSE but after JSF has built the viewroot. First, what I did is register my PhaseListener in faces-config. ...
1
vote
0answers
56 views

Suppress PhaseListener included by external jar

Other than modifying the jar directly, is there a way to suppress a PhaseListener included by an external library?
0
votes
1answer
198 views

UICommand components are placed inside an UIData component, ensure that exactly the same DataModel

I have an application that falls into the category described by the response provided by BalusC. Specifically number 4. I tried moving the DataModel object from a request scope bean to a session ...
0
votes
0answers
317 views

How to modify ComponentTree after RENDER_RESPONSE

I'm pretty sure this is not possible, i need to be sure though: While processing the initial request to a JSF page, i want to modify the component tree programatically. I tried to use a PhaseListener ...
2
votes
1answer
2k views

Logging the invoked managed bean action in a PhaseListener

I am using Sun JSF 2.0 and wrote a phase listener extending javax.faces.event.PhaseListener. I am able to log source URI, target URI, total time and so on. But so far unable to log the ManagedBean and ...
1
vote
1answer
2k views

Understanding the PhaseListener.getPhaseId

HI, I need clarification on implementing the PhaseListener class. The following is the two different overriding implementation for the PhaseListener.getPhaseId @Override public PhaseId getPhaseId() ...