1 Reply Latest reply on Jan 31, 2008 6:23 PM by kukeltje

    Is Page directive built-in with JBPM ?

    francis1970

      Hi all,
      I have found an interesting article describing JBPM-Seam integration

      http://www.onjava.com/pub/a/onjava/2006/03/15/jboss-seam.html?page=4

      I'd like to use the page directive so that when a user is assigned a Task, the page flow shows the correct form page.

      <pageflow-definition [...]
       name="shopping">
      
       <start-state name="start">
       <transition to="browse"/>
       </start-state>
      
       <page name="browse" view-id="/browse.xhtml"
       redirect="true">
       <transition name="browse" to="browse"/>
       <transition name="checkout" to="checkout"/>
       </page>
      
       <page name="checkout" view-id="/checkout.xhtml"
       redirect="true">
       <transition name="checkout" to="checkout"/>
       <transition name="complete" to="complete"/>
       </page>
      
       <page name="complete" view-id="/complete.xhtml"
       redirect="true">
       <end-conversation />
       </page>
      
      </pageflow-definition>


      My question is: do I need to install Seam libraries to use the tag ?
      or now it's built-in in JBPM ? Thanks
      Francesco