3 Replies Latest reply on Mar 1, 2013 8:28 AM by swiderski.maciej

    Domain Service task default work item handler is not working if added through META-INF/*.wid file

      Hi ,

       

      In JBPM5, I am using domain service task and also created work item handler for the same.

      If at the time of creating knowledge session or before starting the process I have registered the custome work item handler in ksession.

      then work item handler is executed perfectly.

       

      Now from drool rule, want to start the process, in that case I have defined SAMPLE.wid file added in drools.rulebase.conf.

      the wid file as below:

       

      import org.drools.process.core.datatype.impl.type.StringDataType;

       

      [

         [

          "name" : "SampleTask",

          "parameters" : [

                    "name" : new StringDataType()

          ],

          "displayName" : "SampleTask",

          "icon" : "",

          "defaultHandler" : "com.sample.SampleTaskWorkItemHandler",

          "dependencies" : [

          ]

        ]

      ]

       

       

      I this case work item handler is not found to ksession.

       

      Please let me know that this approach will work.

      Can jbpm5 process engine load the deafault handler mentioned in *.wid?

       

      I have just started to learn about JBPM5. Please help me to resolve this issue.

       

      Thanks & regards,

      -vinayak

        • 1. Re: Domain Service task default work item handler is not working if added through META-INF/*.wid file
          groopk

          Can't tell if this is exactly what you are after, but you can try it-

           

          Shut down the server, then use 7-zip (or whatever tool you like) to open the jbpm-gwt-console-server.war\WEB-INF\classes\META-INF\CustomWorkItemhandlers.conf and add a line in like:

           

          {code}

          [

            "Log": new org.jbpm.process.instance.impl.demo.SystemOutWorkItemHandler(),

             "SampleTask" : new com.sample.SampleTaskWorkItemHandler()

          ]

          {code}

           

          Then jar up your SampleTaskWorkItemHandler class files and put them in the jbpm-gwt-console-server.war\WEB-INF\lib directory. Start up your server, then your SampleTask WorkItemHandler should be available to use without registering the handler from a ksession.

           

          On a related note, I put in a jira to ask them to update their docs with this info, because it was not at all obvious how to do this. You can vote for it if you like: https://issues.jboss.org/browse/JBPM-3931

          • 2. Re: Domain Service task default work item handler is not working if added through META-INF/*.wid file

            hi yarr,

             

            Thanks for your reply.

             

            I have tried it from the web application, have created to start the process. But still same thing is happened.

            but I don't know who is parsing drools.session.conf and registering the work item handler.

             

            How  can initialize knowledge session to read the configuration provided in drools.session.conf ?

             

             

            In between I have tried to start the process from sample.drl file and registering the workitem handler and starting the process.

             

            package com.sample.drl
              
            import java.util.Map;
            import java.util.HashMap;
            import org.drools.runtime.process.ProcessInstance;
            import com.sample.SampleTaskWorkItemHandler;
            import com.sample.vo.EntityLifecycle;
            
            rule "sample start  request"
            
                when
                    $entity : EntityLifecycle( entityName == "Sample")
                then       
                  SampleTaskWorkItemHandler sampleWorkItemHandler = new SampleTaskWorkItemHandler ();
                   kcontext.getKnowledgeRuntime().getWorkItemManager().registerWorkItemHandler("SampleTask", sampleWorkItemHandler ); 
                    
                    Map params = new HashMap();
                    params.put("entity", $entity);        
                    ProcessInstance pi = kcontext.getKnowledgeRuntime().createProcessInstance("com.sampl.bpm.sampleRequest", params);
                    insert(pi);
                    kcontext.getKnowledgeRuntime().startProcessInstance(pi.getId());
            end
            
            

             

             

            Thanks & Regards,

            -vinayak

            • 3. Re: Domain Service task default work item handler is not working if added through META-INF/*.wid file
              swiderski.maciej

              please read the docs, especially this part that describes how to configure jbpm-console to use different settings than defaults. You'll see that registering work item handler is described there and you don't need to change configuration files inside the war files. Obviously you need to put your custom classes on jbpm-console classpath.

               

              HTH