Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
1k views

Best practices for using Drools Expert/Flow in a Web Application

I'm currently teaching myself Drools Expert/Flow as well as GWT. I want to use Drools Flow as an event/command bus and business rule engine to achieve loose coupling between different parts of the ...
3
votes
1answer
284 views

How to define constant in jboss drools?

All I want to know that how to define contant variable in jboss drools rule. So, Admin has to change only one place to modify the configurable value. Thanks.
3
votes
3answers
674 views

Drools testing with junit

What is the best practice to test drools rules with junit? Until now we used junit with dbunit to test rules. We had sample data that was put to hsqldb. We had couple of rule packages and by the end ...
2
votes
2answers
1k views

Decision trees and rule engines (Drools)

In the application that I'm working on right now, I need to periodically check eligibility of tens of thousands of objects for some kind of a service. The decision diagram itself is in the following ...
1
vote
2answers
129 views

Help Drools integration with Scala

I am new with Drools. I am integrating Drools with Scala. I am trying the project given at http://www.gettingcirrius.com/2010/12/using-jboss-rules-drools-in-scala.html. I have made a small change in ...
1
vote
1answer
148 views

Does Drools/JBPM5 support data flow?

Does Drools/JBPM5 support data flow? Or is it only control flow?
1
vote
1answer
434 views

How to deploy Drools Flow and rules by my web application

First sorry for my language,Actually just now started my new project,My project Manager said that Drools is the new technology and we will include drools flow and rules are will integrate our web ...
1
vote
1answer
275 views

JBPM to Drools Flow - Is there a documented migration path?

I'm currently using a fairly old version of JBPM for workflow processing as part of a larger project. I'm investigating the possibility of moving to the Drools Flow library as a replacement to JBPM. ...
1
vote
1answer
390 views

How can I continue a Drools Flow process when I receive a JMS Message?

I have a very simple flow, a JMS Message starts a process which receives a List of objects. A foreach iterates through this list and sends a JMS Message to component to process the object in the list. ...
1
vote
1answer
182 views

How to manage roles and generate web-forms using Drools Flow?

I am creating a workflow(integrated into a Java web application) for a leave application approval. The workflow is as follows: Leave request is raised for an employee. Case 1: If employee's role is ...
1
vote
1answer
517 views

Is Drools SubFlow/SubProcess used much at all? Drools documentation lacking

I'm trying to prototype a workflow using a rule flow and rules. I started testing subProcess because it's obviously useful to be able to call or reuse a subroutine. After much fiddling, I can't get ...
1
vote
2answers
780 views

Can Drools Flow scale to executing hundreds of thousands of process instances per day?

I'm currently evaluating Drools Flow as a workflow engine for executing up to hundreds of thousands of process instances per day. Has anyone published any scalability benchmarks for this technology? ...
0
votes
1answer
28 views

Does activiti allow users to define domain-specific extensions like jBPM?

jBPM allows users to extend the default process constructs with domain-specific extensions as specified in their user guide here. Does anybody know if Activiti supports this?
0
votes
1answer
158 views

Only a type can be imported. models.XYZ resolves to a package

I have been trying to resolve the problem for the past 1 day but i could not able to resolve. Iam triggering drools (rules) from the play models.It is working perfectly fine in my local environment. ...
0
votes
2answers
157 views

drools rule get value from a map

How to get the perticular value in the drools when block. I am looking for something like this but its not working: I have inserted Hashmap into Working memory and trying to retrieve it in When ...
0
votes
1answer
673 views

Accessing the process instance from Rule Tasks in JBPM 5

The short version: How do I get JBPM5 Rule Nodes to use a DRL file which reads and updates process variables? The long version: I have a process definition, being run under JBPM5. The start of this ...
0
votes
0answers
404 views

Accessing variable of process in drl file

I have a global variable in my jbpm process,the variable's name is jsonOutput. I want to access this variables in my *.drl file but I dont know how to do this! I insert a script task before my rule ...
0
votes
2answers
290 views

StatelessKnowledgeSession and Drools Flow

Is it possible to run a Drools Flow process from a StatelessKnowledgeSession? If so, how? It doesn't have the startProcess(id, params) method and seems to only implement rule functionality. I have a ...
0
votes
1answer
147 views

Timing learning Drools

I'm making a thesis on Drools. But I have no idea on the workloard learning Drools. Could someone give a number from 1 to 10 on Expert, Flow, Fusion and Guvnor. I just have to test the technique on a ...
0
votes
1answer
366 views

How to Integrate Drools Flows and Rules with my web application

sorry for my language,My question is how to Integrate Drools technology to my web-application,please tell me step by step because i am a learner so please tell me.I already read this ...
0
votes
1answer
323 views

Drools Decision table rules not using updated values

I am using Drools Rules Server as a service. We are using a decision table Pre Rules Movie Object: actor: "unknown" movie: "Ghostbusters" rating: 9 I have 2 simple rules in a Drools Decision ...
0
votes
1answer
218 views

Qn on Drools Flow: How to specify a ruleflow to start at specific node?

I'm working on a Drools project which requires pausing of ruleflow (write into database) and resuming the ruleflow (read from database). I know that Drools provides out of the box JPA/transaction ...
0
votes
1answer
208 views

Loading .brl rules into rulebase

I am using a dsl to create business rules (.brl rules). How can I load the .brl rules into my knowledge base? How can I convert from a .brl file to a .dslr file??? I am unable to find any help on ...
0
votes
1answer
558 views

How to retrieve fact objects from decision tables in Drools 4.x

Our team is using Drools ruleflows for evaluations. Now we are planning to migrate to decision tables instead. In the Drools ruleflow version, we used to have DRL files that have query component to ...
0
votes
2answers
541 views

Download Drools RuleFlow files from Guvnor

I can upload RuleFlow (.rf) files to Guvnor (both 5.1 M1 and 5.0) and execute them with rules on the server. If I want to use Guvnor as a repository, is there any way I can download the RuleFlow files ...
0
votes
1answer
550 views

drools persistence with mysql, can't get process instance

I'm stumped. I'm trying to implement persistence with Drools-flow, and I'd like to grab the value of a property on a workitem / processinstance, but everytime I try to get the workitem or process ...
0
votes
1answer
668 views

Drools SubProcess out mapping failed - what am I doing wrong?

I created two "Hello World" processes to give the subProcess nodes a whirl. I'm having trouble getting output from the subProcess back to the main process. I'm hoping someone can enlighten me on what ...
0
votes
1answer
2k views

Drools Flow Human Task example: How do I prevent 'Named query not found' exception being thrown?

I'm trying to follow the Drools Flow example code in the Human Task documentation and I have the following code: import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; ...
0
votes
1answer
392 views

How to start multiple processes in Drools Flow?

I want to start mutliple Drools Flow processes, but this code blocks: ksession.startProcess( "com.sample.ruleflow" ); How can I do this?