Re: [rules-users] Download repository.xml?

2011-05-03 Thread Michael Anstis
When? Where? For what purpose? sent on the move On 4 May 2011 02:13, "boy18nj" wrote: > Have anyone thought of providing repository.xml instead of zip files? > > -- > View this message in context: http://drools.46999.n3.nabble.com/Download-repository-xml-tp2886238p2896839.html > Sent from the Dr

Re: [rules-users] Download repository.xml?

2011-05-03 Thread boy18nj
Have anyone thought of providing repository.xml instead of zip files? -- View this message in context: http://drools.46999.n3.nabble.com/Download-repository-xml-tp2886238p2896839.html Sent from the Drools: User forum mailing list archive at Nabble.com.

Re: [rules-users] How do I validate my DRL file

2011-05-03 Thread Vijeth Raj
thanks Michael for you reply.. 2011/4/30 Michael Anstis > If you can construct DRL String then pass this to a KnowledgeBuilder with > StringReader and check for errors. > > sent on the move > > On 30 Apr 2011 13:55, "Vijeth Raj" wrote: > > Hi , > > I am working on a Grails project where I hav

[rules-users] Question on modeling facts

2011-05-03 Thread Brett Bergquist
I am trying to write rules to distill down a minimal train schedule from a set of overlapping train schedules. A train schedule contains a train identifier, a schedule that it runs on, and a set of train stops. A rule that I would like to write is to combine one or more train schedules if more t

Re: [rules-users] 5.2.0.M2 issue using import functions

2011-05-03 Thread wendy
Thank you that did it. I switched over to using the 5.2.0-SNAPSHOT. -- View this message in context: http://drools.46999.n3.nabble.com/5-2-0-M2-issue-using-import-functions-tp2865621p2895420.html Sent from the Drools: User forum mailing list archive at Nabble.com. ___

Re: [rules-users] Turning off mvel strict-mode evaluation in within Eclipse/Drools?

2011-05-03 Thread drdaveg
Tried to edit and delete the post. It turns out that this error message is being used for a wide-range of errors unrelated to typing! It is as if it were the default exception handler for numerous mvel issues! -- View this message in context: http://drools.46999.n3.nabble.com/Turning-off-mvel-s

[rules-users] Turning off mvel strict-mode evaluation in within Eclipse/Drools?

2011-05-03 Thread drdaveg
A common problem in using Drools DSL is MVEL's "Unable to build expression.unqualified type in strict mode" Many posts mention error, I have looked at drools-compiler.jar, drools-core.jar, drools-api.jar but I haven't found a real solution to the problem yet, i.e., a way to unset strict m

Re: [rules-users] Simple Rule Flow

2011-05-03 Thread sdinoo
Oh Great - this works now Thank you -- View this message in context: http://drools.46999.n3.nabble.com/Simple-Rule-Flow-tp2894351p2894605.html Sent from the Drools: User forum mailing list archive at Nabble.com. ___ rules-users mailing list rules-user

Re: [rules-users] Simple Rule Flow

2011-05-03 Thread Tihomir Surdilovic
You are most likely starting the process, but not firing rules, for example: ksession.startProcess( "myprocess" ); ksession.fireAllRules(); // you need this Thanks. Tihomir On 5/3/11 9:59 AM, sdinoo wrote: > I am new to drools > All I want to do is create a simple rule flow with a rule task tha

[rules-users] Simple Rule Flow

2011-05-03 Thread sdinoo
I am new to drools All I want to do is create a simple rule flow with a rule task that executes a particular Rule-flow group Here is what my rule looks like rule "rule1" ruleflow-group "group1" when eval(true) then System.out.println("Bingo"); end i

[rules-users] Regarding Drools - Expert and Fusion

2011-05-03 Thread Sumeet Karawal
Hi, Could somebody please let me know about any link or document for Best Practices regarding JBoss Rules(Expert) and Fusion. Also any link or document regarding Technical Architecture of JBoss Rules (Expert) and JBoss Fusion Stack. Thanks & Regards, Sumeet Karawal Mailto: sumeet.kara...@tcs.

Re: [rules-users] Can we download examples explained in Drools Expert 5.1 documentation?

2011-05-03 Thread Geoffrey De Smet
To try the examples is simple: http://blog.athico.com/2011/04/try-drools-example-in-less-than-minute.html Their sources are in now in those download zips too, as you can see from the screenshot. The documentation explains some of the examples (but might not be up to date for 5.2.0.M2): ht

Re: [rules-users] Firing the rule at the basis of time

2011-05-03 Thread Saurabh
Hi , I have one table in which daily i have 10-20 rows .Now i need to check these data rows against certain conditions.One of the filed is of Time.Now on the basis of that time i need to fire the rule . But i need to fire the rules in some time slot ,suppose 23:00(11PM) to 01:00(1AM) . So i need

Re: [rules-users] Deploying Guvnor on a existing repository DB

2011-05-03 Thread maav
Pls, does anyone know how this works? Do I need to backup the files that are created in the repository folder and copy them to the second guvnor instance before start it up? As far as I have understood those are mostly index-files so those shouldn't be backed up right? Or have I missed something e

Re: [rules-users] Firing the rule at the basis of time

2011-05-03 Thread Michael Anstis
That all depends on what you are trying to achieve. Please explain your use-case. On 3 May 2011 07:25, Saurabh wrote: > Hi , > > I think It can be done only when i use event based rule (CEP) since in that > we run a timer behind. > > Otherwise how it will run for particular hours of the day. >