3 Replies Latest reply on Apr 20, 2007 3:10 PM by gus888

    ICEfaces v1.6.0 DR#3

    mariuszs

       

      Complete support for using ICEfaces with JBoss Seam v1.2.1.

      Apache MyFaces Tomahawk component integration with ICEfaces applications

      ICEfaces compatibility with JSF 1.2 runtimes and Facelets.


      Sample seam-icefaces app is available.

      http://www.icefaces.org/JForum/posts/list/4274.page


        • 1. Re: ICEfaces v1.6.0 DR#3
          gus888

          This is great news. I used the ICEfaces v1.6.0 DR#3 to run Seam CVS20070417 icefaces example on JBoss AS4.2.0.CR2, no exception happens again, but you have to add the following codes in web.xml:

          * This parameter indicates to ICEfaces to use the standard JSF implementation of EVENT scope. ICEfaces applications that do not use Seam may set this false, and store application information within the RequestMap in the ExternalContext for longer than a single Request or Server initiated render cycle.

          <context-param>
           <param-name>com.icesoft.faces.standardRequestScope</param-name>
           <param-value>true</param-value>
           </context-param>

          * The following Listener must also be defined in your web.xml file:
          <listener>
           <listener-class>com.icesoft.faces.webapp.http.servlet.SessionDispatcher$Listener</listener-class>
           </listener>
          


          • 2. Re: ICEfaces v1.6.0 DR#3
            monkeyden

            What about this? I couldn't get it to work.

            DR#2 Session Expired
            http://www.icefaces.org/JForum/posts/list/4074.page

            • 3. Re: ICEfaces v1.6.0 DR#3
              gus888

              Use DR#3 and put the backport-util-concurrent.jar from icefaces package into lib directory.