4 Replies Latest reply on Sep 3, 2007 6:59 PM by fredbene

    Problem using seam 2 with firefox and jbpm

    fredbene

      Hello,

      I'm using this simple jpdl

      
      <pageflow-definition
       name="editNews">
      
       <start-state name="start">
       <transition name="edit" to="editNews"></transition>
       </start-state>
      
       <page name="editNews" view-id="/editNews.xhtml">
       <end-conversation/>
       </page>
      </pageflow-definition>
      


      When my firefox access the page editNews (sure, using jbpm) it only shows a blank page while in IE shows the correct page.

      I can see only the correct page using firefox with I put the

      I'm using firefox 2.0.0.6 and test with 1.5.0.12.


        • 1. Re: Problem using seam 2 with firefox and jbpm
          kukeltje

          - it is a pageflow, not jpdl
          - what is the content of the page? Sure there is no problem there?
          - turn on debug and see if the appropriate page is send to the client
          -

          • 2. Re: Problem using seam 2 with firefox and jbpm
            fredbene

            The content of the page is just a hello, nothing calling a component.
            If I access direct the page, it's okay.

            Using firebug shows the tags from the html and my content, but I cannot select the page, even I use the "inspect" from firebug, it can't find the elements from the page, but as I said, my firebug shows in the menu "HTML" the contents of the page.

            • 3. Re: Problem using seam 2 with firefox and jbpm

              can you manage to get the content of the two pages so we can debug? I'm quite sure the problem isn't from the pageflow definition neither from jbpm. Let's dig into the details.

              Try using the webdeveloper plugin for firefox.

              • 4. Re: Problem using seam 2 with firefox and jbpm
                fredbene

                Hmmm I found the problem.... I was writing here and test this:

                My action that I call the method that use the pageflow is this:

                <a4j:commandButton action="#{managerNews.edit}" value="Edit">
                 <f:param name="id" value="#{news.id}"/>
                </a4j:commandButton>
                


                So I just took off the a4j to h:commandButton and worked! I don't know why in this way didn't okay.

                Thank you a lot!