2 Replies Latest reply on Apr 30, 2007 5:01 AM by tim.shaw

    DVD Store problem

    tim.shaw

      Hi, I'm trying the Seam example DVD Store to demo it to my colleagues. All goes well except ... after placing orders (using any of the order processes) I then log in as manager, but I can't see any tasks! The process list shows the orders in various states.
      Am I missing something or is this a bug?
      I'm using JBoss 4.0.5.GA with Seam 1.2.1.GA and haven't done anything but follow the install instructions etc.

      If I can get it running I will push adoption of Seam for our next major project - I think it's a great concept and I look forward to using it in earnest.

      Many Thanks

      tim

        • 1. Re: DVD Store problem
          christian.bauer

          That is a trivial one-line fix, unfortunately that slipped through in 1.2.1:

          Index: web/admin/admin.xhtml
          ===================================================================
          RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/web/admin/admin.xhtml,v
          retrieving revision 1.7
          diff -c -r1.7 admin.xhtml
          *** web/admin/admin.xhtml 22 Mar 2007 21:50:00 -0000 1.7
          --- web/admin/admin.xhtml 16 Apr 2007 16:32:03 -0000
          ***************
          *** 61,66 ****
          --- 61,67 ----
           </f:subview>
          
           <h:dataTable rendered="#{not empty pooledTaskInstanceList}"
          + value="#{pooledTaskInstanceList}"
           var="task"
           styleClass="dvdtable"
           headerClass="dvdtablehead"
          


          • 2. Re: DVD Store problem
            tim.shaw

            Perfect - many thanks.