7 Replies Latest reply on Feb 7, 2008 2:03 AM by tjakopec

    RF 3.2.0 SNAPSHOT

    tjakopec

      Has anyone successfully build and deploy RF 3.2.0. SNAPSHOT???

      We are using JBOSS 4.2.2 GA, SEAM 2.0 and we cannot deploy 3.2.0. with our app. Everything is fine with 3.1.4 GA

        • 1. Re: RF 3.2.0 SNAPSHOT

          The first thing coming to my mind:

          RF 3.1.4: JSF 1.1, Java 1.4
          RF 3.2.0: JSF 1.2, Java 5.0

          Please check...

          • 2. Re: RF 3.2.0 SNAPSHOT
            tjakopec

            detailed info

            my WEB-INF/lib

            04.07.2007 13:34 177.386 commons-beanutils-1.7.0.jar
            06.07.2007 19:32 143.602 commons-digester-1.8.jar
            10.05.2007 10:16 112.341 commons-el-1.0.jar
            18.05.2007 13:36 22.379 commons-fileupload.jar
            10.05.2007 10:16 207.723 commons-lang-2.1.jar
            08.08.2007 11:56 138.956 commons-validator-1.3.1.jar
            11.07.2007 12:08 1.138.709 itext-2.0.4.jar
            08.08.2007 11:56 65.261 jakarta-oro-2.0.8.jar
            24.10.2007 12:23 1.796.377 jasperreports-2.0.2.jar
            22.11.2007 08:26 209.918 jboss-seam-ui.jar
            27.06.2007 22:41 909.270 poi-3.0.1-FINAL-20070705.jar
            29.01.2008 15:32 117.592 richfaces-api-3.1.4.GA.jar
            29.01.2008 15:32 1.304.705 richfaces-impl-3.1.4.GA.jar
            29.01.2008 15:45 1.795.998 richfaces-ui-3.1.4.GA.jar
            19.06.2007 08:50 2.941.389 tomahawk-1.1.6.jar
            

            Directory of C:\Jboss\jboss-4.2.2.GA\server\default\deploy\jboss-web.deployer\j
            sf-libs

            22.10.2007 11:45 8.209 jboss-faces.jar
            22.10.2007 11:45 326.362 jsf-api.jar
            22.10.2007 11:45 1.221.527 jsf-impl.jar


            if jsf-api.jar dir META-INF there if file MANIFEST.MF :)

            Manifest-Version: 1.0
            Specification-Title: JavaServer Faces
            Created-By: 1.5.0_04-b05 (Sun Microsystems Inc.)
            Ant-Version: Apache Ant 1.6.5
            Implementation-Title: Sun Microsystems JavaServer Faces Implementation
            Specification-Vendor: JBoss (http://www.jboss.org/)
            Specification-Version: 1.2MR1
            Implementation-Vendor-Id: com.sun
            Extension-Name: javax.faces
            Implementation-Version: 1.2_04-b16-p02
            Implementation-Vendor: Sun Microsystems, Inc.
            Implementation-URL: http://www.jboss.org/


            java is
            java -version
            java version "1.5.0_13"
            Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05)
            Java HotSpot(TM) Client VM (build 1.5.0_13-b05, mixed mode)




            Bottom line, I can't deploy it!!!

            fmarwede, can you?

            • 3. Re: RF 3.2.0 SNAPSHOT
              viggo.navarsete

              Do you get any error messages/stack traces?

              • 4. Re: RF 3.2.0 SNAPSHOT
                tjakopec

                Yes, on pages where is rich:dataTable i get

                An error occurred at line: 136 in the jsp file: /core/maticni/organizacija/lokacija/PregledLokacija.jsp
                The method setId(String) in the type UIComponentClassicTagBase is not applicable for the arguments (JspValueExpression)
                133: file="/core/predlozak/kolone/tijelo/OperaterPromjene.jsp"%>
                134: </r:dataTable>
                135:
                136: <r:datascroller ajaxSingle="false" id="scrollerDatatable"
                137: for="tablica" maxPages="20" renderIfSinglePage="false" />
                138: <t:panelGrid columns="3" rendered="#{!traziLokacija.traziJedan}">
                139: <t:commandButton image="/slike/ikone/oznacen.png"
                
                
                Stacktrace:
                org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:92)
                


                Other pages are OK


                Couple a months ago there was JIRA
                http://jira.jboss.com/jira/browse/RF-1340

                • 5. Re: RF 3.2.0 SNAPSHOT
                  viggo.navarsete

                  tjakopec: I would suggest that you reopen the issue you mention, and add additional information about your case. If you can provide a war file that can reproduce the problem as well, I guess the developers will be pretty happy ;)

                  • 6. Re: RF 3.2.0 SNAPSHOT
                    ilya_shaikovsky

                    update please and build the fixed code from trunk. Should work.

                    • 7. Re: RF 3.2.0 SNAPSHOT
                      tjakopec

                      Updated, build ed, depoyed, it's not working :) but I think I found a problem. Problem is on every page that use rich:datascroller

                      here is simple example of my problem page

                      <r:dataTable id="tablica" width="100%"
                      rows="#{operKonv.postavkeOperatera.brojRedova}"
                      var="v" rowKeyVar="rb" value="#{traziLokacija.rezultati}">
                      
                       .....
                      </r:dataTable>
                      
                      <r:datascroller ajaxSingle="false" id="scrollerDatatable"
                      for="tablica" maxPages="20" renderIfSinglePage="false" />