I want to access the JSFUnit FacesContext before I create the JSFSession object. The reason for this is I would like to set a managed bean value before any request/response processing is done. I use this value in a filter.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I am not sure exactly what do you want to accomplish, however, if you want to set values before any request will be processed, use WebClientSpec with setInitialRequestStrategy. For example, you can use FormAuthenticationStrategy:
or define your own custom request strategy that implements InitialRequestStrategy. See FormAuthenticationStrategy code and create something similar to it. |
|||
|
|