[rules-users] Drools-Spring Config for Knowledge Agent

2010-10-04 Thread KiranP
Hello Everybody, I've used Drools5.1.0 and I have following Config In Spring : now when i run the code

Re: [rules-users] Drools with Spring Batch

2010-10-04 Thread KiranP
hi, have you figured out whats the problem.if u have then plz can u share it??? - Keep Working >> KiranP -- View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Drools-with-Spring-Batch-tp1488585p1634170.html Sent from the Drools - User mailing list archive

[rules-users] Why are my auto focus agenda group rules with high salience not executed right away?

2010-10-04 Thread H.C.
I have a ruleflow with several rule task and a couple of sub-flows. I also have many rules in a "maintenance" agenda group with auto-focus and salience 100 (highest of all my rules) without a ruleflow-group. The purpose of these maintenance rules is to jump in anywhere across the ruleflow as neede

Re: [rules-users] Rules and process variables...

2010-10-04 Thread bob.breitling
Solved... Went for a more direct approach (via JavaDocs), I made this my action body: insert(context.getVariable("levelInstanceID")); And wrote my rule accordingly, and things worked. Thanks for your help. Bob -- View this message in context: http://drools-java-rules-engine.46999.n3.na

Re: [rules-users] Rules and process variables...

2010-10-04 Thread bob.breitling
I little bit of a situation (maybe)... I am trying to access a variable from a ForEach loop in my process. Here is the code that seems to be called by the ForEach component: for (Object o: collection) { String variableName = getForEachNode().getVariableName(); CompositeNodeInstance node

Re: [rules-users] Rules and process variables...

2010-10-04 Thread vasilievip
I think latest flows default notation(skin) is BPMN2 and "Action" node has name "Script task" -- View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Rules-and-process-variables-tp1616599p1631202.html Sent from the Drools - User mailing list archive at Nabble.com. __

[rules-users] Drools and Unidata

2010-10-04 Thread Dean Whisnant
Do you know of anyone using Drools with Unidata, Universe, or other Pick style database? I'm interested in sharing experiences. Thank you! Dean ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-use

[rules-users] University of Texas Austin

2010-10-04 Thread Mark Proctor
I'm looking for locations for the next USA based conference for febuary (end of febuary). http://blog.athico.com/2010/09/drools-boot-camps-2011-usa-and-emea.html I figured most people want somewhere warm and Austin is centrally located. I don't know about pricing but Austin University seems to

Re: [rules-users] Rules and process variables...

2010-10-04 Thread bob.breitling
Ivan, Thanks for the information. I am trying to use the Eclipse 5.1.1 plugin in MyEclipse. I see the various nodes in the Drools preference windows, but in the actual Drools Flow GUI, the Action component is not there. I am beginning to think the plugin and MyEclipse are not playing well toge

Re: [rules-users] Entry point stream OutOfMemoryError?

2010-10-04 Thread Wolfgang Laun
Increase the heap memory, see java options such as -Xmsn and -Xmxn. See your system's documentation on java. Do you really have to have all CashFlow objects in WorkingMemory at the same time? Consider processing your "huge file" in sections. You probably don't have to have a different Date value

Re: [rules-users] performing math function in drools

2010-10-04 Thread Wolfgang Laun
// appl.transport.Transport.java: public class Transport { public static double tax( double a, int n ){ return Math.pow( a, (double)n ); } } // transport.drl -- import function appl.transport.Transport.tax; import function java.lang.Math.pow;

Re: [rules-users] performing math function in drools

2010-10-04 Thread Kripa Nathwani
My problem is that I am running it using Guvnor and in Guvnor it is not able to recognize the class when I write the import statement. I tried creating drl using File-> New-> drl I also tried to import the rt jar file(through "new file" option in drools 5.1 ) but the package does not get built an

Re: [rules-users] performing math function in drools

2010-10-04 Thread Kripa Nathwani
But for using Math.pow() I have to import java.lang in that function. Even after importing java.lang, it is not recognizing the function add giving me error as : Prohibited package name:java.class If you can just forward me the link for that document you mentioned below, I can get some useful in

Re: [rules-users] fireUntilHalt and timing of rule activations

2010-10-04 Thread Wolfgang Laun
2010/10/4 Greg Barton > If you don't have some way of associating the data with a particular Latch > it's easy to get overlap when processing datasets. In general you need some > way to group the data together. You can avoid a back reference to the Latch > by having a Set of some sort in the La