0 Replies Latest reply on Jan 27, 2013 11:10 AM by vutnal

    How to: LocalHTWorkItemHandler Spring Integration?

    vutnal

      I am trying to register LocalHTWorkItemHandler for "Human Task" using spring integration (in jBPM5.4). My spring configuration looks like this:

       

       

      {code:xml} <jbpm:ksession id="ksession" type="stateful" kbase="kbase" >

           <jbpm:configuration>

                <jbpm:work-item-handlers>

                     <jbpm:work-item-handler name="Human Task" ref="humanTaskWorkItemHandler"/>

                </jbpm:work-item-handlers>

           </jbpm:configuration>

           </jbpm:ksession>

      <bean id="humanTaskWorkItemHandler" class="org.jbpm.process.workitem.wsht.LocalHTWorkItemHandler"><constructor-arg ref="ksession"></constructor-arg></bean>{code}

       

      Obviously, this won't work due to the cyclic dependency of ksession and humanTaskWorkItemHandler.

       

      How to register such WorkItem handler's (using Spring Integration) that need ksession as consturction arg?

       

      Thanks,

      Vijay

       

      Message was edited by: Vijay U - XML Formatting