SessionRenderer « IceFaces « JSF Q&A





1. Partial refresh of page with IceFaces SessionRenderer - unwanted side effect    stackoverflow.com

I have a page with two areas. Left area is for notifications which should be updated frequently. The right area contains forms. I thought I could use the IceFaces SessionRenderer for updating ...

2. Icefaces SessionRenderer in Seam 2.2.0    seamframework.org

4. SessionRenderer.render() in a SipServlet    icefaces.org

I call SessionRenderer.render method in a SipServlet class: public class UACRegister extends SipServlet implements SipServletListener { protected void doNotify(javax.servlet.sip.SipServletRequest req) { ... SessionRenderer.render("buddies") } } I have put SessionRenderer.addCurrentSession("buddies") statement in the constructor of a bean that should be rerendered when get a SIP NOTIFY in the doNotify method. public class BuddiesManager { public BuddiesManager() { SessionRenderer.addCurrentSession("buddies"); } } The ajax ...

5. Ajax Push / SessionRenderer: Example using mulitple 'groups'?    icefaces.org

Thanks Jack, I'm new to ICEfaces, so I wasn't sure if there was a specific managed bean callback method in which I should be adding the current session. I figured if there was an example out there, I'd use it as a template to get started. We are looking to call into the app server via a web service, and push ...

6. SessionRenderer API question    icefaces.org

To answer the first question, SessionRenderer.render(groupName) will render all views that have been registered (or added) to that groupName. For the second question, in the downloaded bundle for ICEfaces (1.7.2 or later) you will find in the docs folder of the bundle a pdf titled ICEfacesDevelopersGuide. Chapter 5 has information about the SessionRenderer and the RenderManager API (which the SessionRenderer is ...

7. SessionRenderer not working    icefaces.org

8. need help with a sessionrenderer sceranio    icefaces.org

I know a way to do this at the network level, but I'd rather do it at the application level. Here's the situation I have a facelets, jsf springwebflow 1.x application, there is a single main page which serves as a reminder for a user based on role. The application has well over 100 screens. Certain transactions generate a reminder on ...

9. How to initialize new session for SessionRenderer for application scoped managed bean    icefaces.org

Hi, I am implementing AjaxPush functionality. I defined an application scoped managed bean in faces config and i m registering the session in the constructor of the bean. I am not using any Session scoped bean. But whenever i open a new session, this session is not getting registered for SessionRenderer and the changes are not getting rendered. Only the first ...





10. SessionRenderer info    icefaces.org

11. SessionRenderer.Render leaks memory    icefaces.org

13. NullPointer when trying to use SessionRenderer    icefaces.org

I have a similar problem when hitting a servlet that navigates to a .jspx I get the below exception. Can you please help me to resolve this? I use JDK 1.6.0_17 and Icefaces 1.8.2 on sun one server 7 u6. I use the below code NavigationHandler navigationHandler = application .getNavigationHandler(); navigationHandler.handleNavigation(facesContext, null,"index" ); lifecycle.render(facesContext); I checked and facesContext and navigationHandler are ...

15. renderedOnUserRole not working in server push with SessionRenderer    icefaces.org

I use the SessionRenderer to update the web page if a event happens on the server side. The Session Renderer obviously is then called within a non session thread as it is triggered by eg. a timer. Everything works well and the update happens on the weg page perfectly. But if I use for a component on the page renderedOnUserRole (or ...