JBoss Community

Re: How to set a process to use drl rule just by using the drools-guvnor, web editor, and jbpm console?

created by Thomas Setiabudi in jBPM - View the full discussion

Seems like I have to create a Technical Rule (DRL) inside the drools-guvnor,

by doing it this way, i can specify my import line.

 

And I manage to get my rule works without calling fireAllRules, maybe this is caused by my architecture where I use JBPM as service by managing the process via jbpm-console REST service instead of embedding the JBPM engine in my own application.

 

my test rule that finally works looks like this:

 

import org.drools.runtime.process.WorkflowProcessInstance

rule "AlterName"
ruleflow-group "ChangeName"

when
processInstance : WorkflowProcessInstance()
eval(1 < 18);
then
processInstance.setVariable("name", "NewName");
end

 



Reply to this message by going to Community

Start a new discussion in jBPM at Community