1 Reply Latest reply on Feb 16, 2006 3:22 AM by tom.baeyens

    jBPM 2 xml to jBPM 3 xml

    joshuayip

      Hello all,

      I have a piece of JBPM 2 process definition which I needed to convert to JBPM 3 . Of thse, I find that the delegation class (org.jbpm.delegation.assignment.ActorAssignmentHandler) is no more in existence. I am fairly new to this. Any anyone give me some pointers how to
      convert the jbpm 2 xml to jbpm 3 xml ?

      <?xml version="1.0" encoding="UTF-8"?>
      <process-definition name="definition_name">
      <description>Delete User Role Information</description>
      <swimlane name="CREATOR">
      <delegation class="org.jbpm.delegation.assignment.ActorAssignmentHandler">1</delegation>
      </swimlane>
      <swimlane name="1">
      <delegation class="org.jbpm.delegation.assignment.ActorAssignmentHandler">1</delegation>
      </swimlane>
      <start-state name="Delete User Role Information" swimlane="CREATOR">
      <transition to="APRPOVAL1"/>
      </start-state>
      <state name="APRPOVAL1">
      <assignment swimlane="1"/>
      <transition name="APPROVE" to="done"/>
      <transition name="REJECT" to="done"/>
      </state><end-state name="done"/>
      </process-definition>


      Thanks
      Joshua



        • 1. Re: jBPM 2 xml to jBPM 3 xml
          tom.baeyens

          there is a conversion tool for converting processes from 2 to 3. it might not translate everything, but the main things like delegations are translated. afaik, it is described somewhere in the docs.

          regards, tom.