request « Session « JSF Q&A





1. How can I get HttpServletRequest when in an HttpSessionListener?    stackoverflow.com

How can I access request headers from a SessionListener? I need to set a timeout on the current session when it is created. The timeout needs to vary based on a header ...

2. how to handle session scope and request scope???    coderanch.com

Hi All, I am developing a report module. based on the values entered by the user i have to generate a report. once the result is displayed from there user can navigate to other pages (there is no user input here) using hiperlinks. my problem is since i am using session scope for my backing bean. when i go back to ...

3. regarding request and session scope's    coderanch.com

4. JSF - Request / Session attributes    coderanch.com

There are several ways to share data between webapps and they're not JSF-specific. One way is to share session data. That tends to be fairly low overhead, but it only works in limited configurations. And you have to specially configure the server(s) that do the session sharing. A more robust way is to simply keep the info in persistent storage. This ...

5. Session and request in JSF    java-forums.org

hi, I am working in struts for last two years. Now i started with JSF. We are making a managed-bean and make the value available in the view(JSP). and when we click the button (an action) we call the method in the managed-bean to get the values from the Form( since i am new i am here only). Is there any ...