Re: [rules-users] Drools templates header arguments

2013-11-25 Thread Alexander Wolf
afaik that's not possible. Basically the templates replace the value for @{param} with param.toString() (that's why your approach is not working). Regarding your concerns about performance: the templates are translated into rules once -> afterwards there is no connection between the variables a

Re: [rules-users] Weird classloader problem

2013-11-18 Thread Alexander Herwix
heers, Alex Am 18.11.2013 um 14:13 schrieb Martin Minka : > I had similar problem and it was solved in 6.0.0.CR5. > > > 2013/11/18 Alexander Herwix > Hey guys, > > using Drools 6 RC4. I have a simple rule which should cast an object into a > specialized object (if

[rules-users] Weird classloader problem

2013-11-18 Thread Alexander Herwix
Hey guys, using Drools 6 RC4. I have a simple rule which should cast an object into a specialized object (if it is indeed a specialization) and insert that into the session. rule "Obj is SpecialObject" salience 201 when $mainObj : MainObj(obj.class == SpecialObject.class, $obj : obj)

Re: [rules-users] peephole technique -> cast to java.lang.Number problem

2013-11-04 Thread Alexander Wolf
, 5s] $last ) > then > System.out.println($old); > end > > -W > > > > > On 03/11/2013, Alexander Wolf wrote: >> Okey I got a little further: This works: >> >> rule "count old" >> when >> $le : LastEvent($ts : ev

Re: [rules-users] peephole technique -> cast to java.lang.Number problem

2013-11-03 Thread Alexander Wolf
to do what I want...but not as "niceley..." as expected. - On 02 Nov 2013, at 18:11, Alexander Wolf wrote: > Drools 5.5.0 + Fusion / stateful session / STREAM mode > > Hi, > > I try to improve my rules using peephole technique (Thanks @W) > I think I got it right

[rules-users] peephole technique -> cast to java.lang.Number problem

2013-11-02 Thread Alexander Wolf
Drools 5.5.0 + Fusion / stateful session / STREAM mode Hi, I try to improve my rules using peephole technique (Thanks @W) I think I got it right, but now I am stuck with a problem. I want to keep a reference to my latest inserted event. Problem: the rule "print old" gives me an Exception (see

[rules-users] NPE in Event.attribute.getIntValue()

2013-10-28 Thread Alexander Wolf
Version: 5.5.0 Drools Expert + Fusion Stateful ksession in STREAM mode In an integration test, I ___sometimes_!!! (always the same variables... ) get the following Exception: Exception in thread "Thread-1" java.lang.NullPointerException at org.drools.base.com.myApp.model.Measuremen

Re: [rules-users] session deserialization slidingTimeWindow NPE

2013-10-17 Thread Alexander Wolf
The full stack: 11:40:27.483 [main] WARN o.d.t.impl.DefaultTimerJobInstance - Unable to execute timer job! org.drools.runtime.rule.ConsequenceException: Exception executing consequence for rule "set environment night" in MyPackageName: java.lang.ClassCastException: org.drools.time.impl.Default

Re: [rules-users] session deserialization slidingTimeWindow NPE

2013-10-17 Thread Alexander Wolf
Wohoo... I finally tried 5.5.6 =( 1. Comments with # do not work anymore, only // works 2. Problem with CRON Timer 10:50:50.827 [main] WARN o.d.t.impl.DefaultTimerJobInstance - Unable to execute timer job! org.drools.runtime.rule.ConsequenceException: Exception executing consequence for rule "s

[rules-users] session deserialization slidingTimeWindow NPE

2013-10-17 Thread Alexander Wolf
Sometimes (I am not sure what the actual reason is yet ) I get following NPE when I try to deserialize my ksessions: java.lang.NullPointerException at org.drools.common.ConcurrentNodeMemories.getNodeMemory(ConcurrentNodeMemories.java:63) at org.drools.common.AbstractWorkingMemor

Re: [rules-users] Drools Fusion, best practise?!

2013-10-16 Thread Alexander Wolf
I think its this one: http://www.redhat.com/rhecm/rest-rhecm/jcr/repository/collaboration/sites%20content/live/redhat/web-cabinet/home/resourcelibrary/whitepapers/brms-design-patterns/rh:pdfFile.pdf correct me if I am wrong @Wolfgang On 16.10.2013, at 22:09, kurrent93 wrote: > Are you able to

[rules-users] Drools Fusion, best practise?!

2013-10-16 Thread Alexander Wolf
Hey, I try to use drools fusion to detect patterns in an event stream. Each time an event occurs I insert it into my ksession and call fireAllRules(). Most of my rules need to reason over the newest event (the one that just came in) in conjunction with events that happend before or after that.

Re: [rules-users] Pattern of usage question

2013-10-14 Thread Alexander Wolf
Hey Laird, right now I work on a new Java WebService (with Spring) that uses Drools to accomplish complex event processing on sensor values (=events). As I am relatively new to this, I can definitely not call it "best practice" or anything the like. But so far it seems to work ;) - I create a

Re: [rules-users] AfterEvaluatorDefinition NullPointer Exception in deserialized ksession

2013-10-11 Thread Alexander Wolf
going to be fixed in 5.6.0 ? (@Mark Proctor?) - Alex On 11.10.2013, at 16:09, Demian Calcaprina wrote: > Hey Alexander, > > Would this be related to this? > > https://issues.jboss.org/browse/DROOLS-243 > > If it is this one, you can do something like this a

[rules-users] AfterEvaluatorDefinition NullPointer Exception in deserialized ksession

2013-10-11 Thread Alexander Wolf
[Drools 5.5.0 Final] I wrote a webserver that keeps StatefulKnowledgeSessions running in Stream mode. When the server is stopped, the sessions are serialized and stored in a database. When the server is restarted, the existing sessions are restored / deserialized. Some time after recreating th

[rules-users] protobuf for marshalling

2013-10-10 Thread Alexander Wolf
[Drools 5.5.0 Final] Hey, for using the marshaller I needed to add ProtoBuf jars to my project like this: com.google.protobuf protobuf-java 2.4.1 Is there any particular reason why it is not included in the drools jars or at least mentioned in the documentation? Apparently droo

Re: [rules-users] replace session clock at runtime

2013-09-30 Thread Alexander Wolf
Reading your answer again I just realized that you did not recommend to write my own clock implementation. Therefore you may just ignore that question. I am still curious what PR stands for though. Alex On 30.09.2013, at 17:44, Alexander Wolf wrote: > > Thanks Edson, > > - Wha

Re: [rules-users] replace session clock at runtime

2013-09-30 Thread Alexander Wolf
Thanks Edson, - What exactly is a "PR" ? > I wouldn't mind helping with the documentation. - how would I declare my own clock implementation in the session configuration? I can't find any example for this. (?) Alex On 30.09.2013, at 16:23, Edson Tirelli wr

Re: [rules-users] replace session clock at runtime

2013-09-30 Thread Alexander Wolf
[SOLUTION] I found a "solution/workaround" to this problem: I create the session with JPAKnowledgeService.newStatefulKnowledgeSession() and pseudo clock in configuration, feed in my old events -> and store the session it a database. When retrieving the session, I can set realtime clock in the

[rules-users] replace session clock at runtime

2013-09-23 Thread Alexander Wolf
Drools 5.5 Hey guys, Is it possible to replace the session clock of an existing stateful knowledge session (STREAM mode) while it is running or at least by pausing and restarting it? I need to feed old events into the session to restore a certain session state before switching the sessions t

Re: [rules-users] latest event within a timeframe

2013-09-19 Thread Alexander Wolf
taking into account the correct "zero" timestamp ($event1). > Thanks for reporting this, I'll open a JIRA > Davide > > On 09/18/2013 12:29 PM, Wolfgang Laun wrote: >> Is the session being run via a single call to fireUntilHalt()? >> -W >> >> On 18/09/20

[rules-users] latest event within a timeframe

2013-09-18 Thread Alexander Wolf
[Drools Version 5.5.0 Final] Hey - I got an event E1 that is only valid, if the latest event E2 following E1 within 2 minutes has the value 1 --> I want have the rule fire 2 minutes after E1 but only if E1 is valid This is my rule: rule "inform about E1" when //event (T1) is the initi

[rules-users] using after in calendar rule

2013-09-13 Thread Alexander Wolf
Following rule does not work for me (see exception) - I got the impression that having a calendar for a rule that uses "after" leads to this. Any ideas? (Version 5.5.0 Final) The point of time I get the exception is NOT within the defined calendar time (the rule should actually be ignored at tha

[rules-users] Can calendars be defined within .drl ?

2013-09-13 Thread Alexander Wolf
Hey, I use a lot of quartz calendars in my rules like this: rule "my rule" calendars "myCalendar" when But defining them in java is quite verbose. Also I often use the same calendar for only one rule. I believe the calendar is part of the logic and therefore don't like to initialize

[rules-users] Events in wrong order - will it cause problems?

2013-09-10 Thread Alexander Wolf
I used to let drools set the timestamp of events automatically, but a new requirement forces me to use @timestamp for my events. Normally my events should come in the right order, but sometimes (as the events origin from mobile devices) it can occur that the order is incorrect. I tested with "w

Re: [rules-users] A Drools CEP Scenario - did I get it right?

2013-09-09 Thread Alexander Wolf
The question is more or less where to begin. 1. If there is a Fact in working memory (e.g. "Person") and I invoke fireAllRules() twice, I would expect to have the following rule fire both times: rule "alwaysFire" when $room : Room( ) then System.out.println("there is a room"); e

Re: [rules-users] counter in slidingTime window with restriction

2013-09-06 Thread Alexander Wolf
0sec after room was modified"); end Somehow this rule triggers the "slidingTimeCount" rule activation again. On 06.09.2013, at 10:39, Alexander Wolf wrote: > Drools Version 5.5.0 FINAL > > Here's the code for session

Re: [rules-users] counter in slidingTime window with restriction

2013-09-06 Thread Alexander Wolf
ules) Thread.sleep(1000*60*1); ksession.dispose(); On 05.09.2013, at 12:02, Wolfgang Laun wrote: > Hard to believe, but who knows. > > Drools version and session setup, please. > > -W > > > On 05/09/2013, Alexander Wolf wrote: >>

[rules-users] Expected Transaction Rollback Behavior of Drools 6

2013-09-05 Thread Alexander Herwix
Hey guys, I have a question regarding the expected transaction rollback behavior of drools 6 in an JTA-Environment. It looks like I have successfully configured drools within my app, however when I create a KieSession within a Transaction and roll it back, there is still some data persisted to

Re: [rules-users] counter in slidingTime window with restriction

2013-09-05 Thread Alexander Wolf
Hey guys, I wrote a rule to count the SensorEvents in my KnowledgeSession that have been inserted via entry-point SensorEventStream over the last 3 seconds - but I only want the event to fire, if there were any events in the last 3 seconds at all. Problem: if there were no recent events, i sti

Re: [rules-users] Drools 6 Spring JTA Persistence

2013-09-04 Thread Alexander Herwix
nalysis) solution so my current focus is on expert > & fusion. But jBPM is also an important module that I'll need in the future. > Maybe we can come togehter and create one feature rich grails plugin. > Let me know if you're interested. > > Cheers > > -markus >

Re: [rules-users] Drools 6 Spring JTA Persistence

2013-09-04 Thread Alexander Herwix
share your plugin code with community ? > > Best regards, > Martin > > > > 2013/9/3 Alexander Herwix >> Hey guys, >> >> I'm working on a Grails plugin for Drools/Jbpm 6 and I have trouble to get >> persistence working in a user friendly way. It woul

[rules-users] Drools 6 Spring JTA Persistence

2013-09-03 Thread Alexander Herwix
Hey guys, I'm working on a Grails plugin for Drools/Jbpm 6 and I have trouble to get persistence working in a user friendly way. It would be awesome if someone with a better understanding of drools and especially drools spring integration could help me to figure this out :) I have considered

Re: [rules-users] KIE-WB, Drools-WB Authoring REST api

2013-08-13 Thread Alexander Herwix
can > use the VFS API. > > > On Aug 13, 2013, at 8:40 AM, Alexander Herwix wrote: > >> Hey Mark, >> >> first of all thanks for the information but I disagree. I would see >> providing a CRUD api as a helpful feature as this would provide a single >

Re: [rules-users] KIE-WB, Drools-WB Authoring REST api

2013-08-13 Thread Alexander Herwix
think about native mobile apps. Anyway, keep up the good work. Cheers, Alex Am 12.08.2013 um 19:42 schrieb Mark Proctor : > > On 12 Aug 2013, at 18:28, Alexander Herwix wrote: > >> Hey guys, >> >> I really love the new wb-apps, but documentation is really pretty sp

[rules-users] KIE-WB, Drools-WB Authoring REST api

2013-08-12 Thread Alexander Herwix
Hey guys, I really love the new wb-apps, but documentation is really pretty sparse right now, so maybe you guys can help me out :) Is there any documentation on the authoring REST-Api? I have already asked on the jbpm forum, where they said that there should be one but that it's not documente

Re: [rules-users] Rule File Not Found in an OSGi environment

2012-02-16 Thread Alexander Filipchik
I guess I had same issue. At first - check your jar and make sure it is there. Then make sure you don't override default Bundle-ClassPath. And finally - try to specify full path ([package]/'RuleFile.drl) Actually I've started with placing rule on a local disk and specifying path to it (/home/user/

Re: [rules-users] [rules-dev] Need Camel + drools (OSGI) integration help

2012-02-10 Thread Alexander Filipchik
aders>Ignore-Package + org.drools.core;bundle-version="${drools.osgi.version}" +!org.drools.*, * + + org.drools.grid,org.drools.grid.impl,org.drools.container.spring + +org.drools.* + + + + + Alex On

Re: [rules-users] [rules-dev] Need Camel + drools (OSGI) integration help

2012-02-07 Thread Alexander Filipchik
uality = > org.drools.base.evaluators.EqualityEvaluatorsDefinition > drools.evaluator.comparable = > org.drools.base.evaluators.ComparableEvaluatorsDefinition > drools.evaluator.set = org.drools.base.evaluators.SetEvaluatorsDefinition > drools.evaluator.matches = > org.drools.base.evaluators.MatchesEvaluatorsDefini

Re: [rules-users] Need Camel + drools (OSGI) integration help

2012-02-07 Thread Alexander Filipchik
er/drools-osgi-bundles > 4) Update the boot-bundles.properties so that Spring DM loads the OSGi > dependencies > > https://github.com/droolsjbpm/droolsjbpm-build-distribution/blob/master/drools-osgi-bundles/org.drools.osgi.test/src/test/filtered-resources/boot-bundles.properties >

[rules-users] Need Camel + drools (OSGI) integration help

2012-02-02 Thread Alexander Filipchik
Hello all! Don't know if it is right list to ask, but I'm trying to make drools + camel running on Fuse (ServiceMix container). I couldn't even install OSGI drools artifacts for 5.3.1 version (because of weird dependency on drools.core Snapshot), but did it with v5.2.1. I used: mvel2/2.1.0, org.d

[rules-users] Turning off strict mode

2011-10-31 Thread Alexander
Hello. Is it possible to turn off strict mode in Drools 5.2 or 5.3 like in 5.1? How can i do it? We use Drools 5.1 and we use lots of maps so we turned off strict mode. I tried to switch to Drools 5.2 or 5.3 but setting System.setProperty("drools.dialect.mvel.strict", "false") doesn't work with t

Re: [rules-users] Override JPAWorkItemManager

2011-09-07 Thread Alexander Egger
from there. This is not exactly an answer to your question but maybe it helps. Alexander 2011/9/7 Amin Mohammed-Coleman : > Hi > Thought it would make sense to show some code: > Properties prop = new Properties(); > ... > prop.put("drools.wo

[rules-users] How to manage lists of data

2011-03-22 Thread Alexander, Scott F
Hi, Im pretty new to drools and have been going through the docs for the Expert and guvnor. I have some basic unit tests running with the rules I am trying to replicate from a legacy system. One of the rules my current system uses is to check a property in an Object against a list of values a

[rules-users] Drools Guvnor documentation issue

2009-06-18 Thread Alexander Golubev
t link right in the docs. Regards, Alexander ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: query on "modify"

2008-06-24 Thread Alexander Claus
Try change this line to "modify(cc) {}" or better, put the modification of the cc (setElig...) inside the curly brackets: "modify(cc) { setElig... }; Alexander ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: Rule is firing on those objects for which thathasalready fired

2008-06-21 Thread Alexander Claus
s instead of giving a parameter $po.getLatestTimestamp1(), $po.getLatestTimestamp2(), ... Then you could bind these values to variables and you can avoid the eval which costs only performance. Once you have bound timestamps you can directly add a field constraint to pa

[rules-users] Re: can not be updated variable value

2008-06-19 Thread Alexander Claus
Thanks Alexander. my question is in my table empcode colunm value first i am set some value like this empcode="EMPCODE" when a set some value in my TestCase's like...emp.setEmpCode("manya"); In this case it will change column value like this... empcode="manya"

[rules-users] Re: can not be updated variable value

2008-06-19 Thread Alexander Claus
(empcode) has already assigned some value? Isn't it a simple null-check? empcode != null Please explain your problem more detailled, if this is not an answer to your question. Alexander ___ rules-users mailing list rules-users@lists.jboss.org

[rules-users] Re: How to validate boolean values..using Drools

2008-06-18 Thread Alexander Claus
with java.util.Date instead of Timestamp, this expression behaves well. Alexander ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: access to in working memory generated objects

2008-06-18 Thread Alexander Claus
component can access this new generated object from outside? Have a look at org.drools.event.WorkingMemoryEventListener. I think you find yourself how to use it. Best regards. Alexander Claus ___ rules-users mailing list rules-users@lists.jboss.org

[rules-users] Re: Rule is firing on those objects for which that hasalready fired

2008-06-18 Thread Alexander Claus
quot;processed" by the rule, e.g with your ruleID, and to test everytime in the lhs if the object of interest is not processed... This is ugly, but it works. Hope I could help you, but, let me know, if you have found a better solution. Alexander Claus

[rules-users] Re: How to validate boolean values..using Drools

2008-06-17 Thread Alexander Claus
Y" || "N" which is the simplest solution which you should (!) have found even as a beginner as I am. Again: experiment with the language! Alexander Claus ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: Re: How to write the validation timestamplessthancurrent date using drools

2008-06-12 Thread Alexander Claus
e a kind of meta-information about the facts, but if not, think, if "can not be updated" is a kind of property, which can be expressed as constraints on some facts and their fields. Alexander Claus ___ rules-users mailing list rules-use

[rules-users] Re: Re: beginner needs help

2008-06-12 Thread Alexander Claus
he ready-to-use distributions of the Drools download site. Either the binarys or the Eclipse plugin should fulfill your needs. Alexander Claus ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: How to write the validation timestamp lessthancurrent date using drools

2008-06-12 Thread Alexander Claus
ding done earlier in the rule. Since clock support is introduced not until Drools 5, you have to insert a virtual clock object in the working memory, which you have to update with certain mechanism to the current system time. If you have your solution without DSL it should not be difficult to cast

[rules-users] Re: Re: Rules compiler is not able to extract the fieldwithxXXX format

2008-06-12 Thread Alexander Claus
gin.) For you this means: Change your 3rd line in rule to $rulesServiceTest : RulesServiceTest( $tText : TText ) Now it should work. I don't know, if this is a bug or if it is intended this way. Perhaps one of the developers could say something about? Alexander Claus _

[rules-users] Re: Rules compiler is not able to extract the field withxXXX format

2008-06-11 Thread Alexander Claus
"sText", but you have declared "tText". Alexander Claus ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: beginner needs help

2008-06-11 Thread Alexander Claus
resting document referenced: readme_dependencies.txt Alexander ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] Question about timing rules

2008-06-07 Thread Alexander Claus
uration parameter at runtime. Hope I could inspire you... Alexander Claus - Original Message - From: "Bagwell, Allen F" <[EMAIL PROTECTED]> To: "Rules Users List" Sent: Thursday, June 05, 2008 7:14 PM Subject: RE: [rules-users] Question about timing rules

[rules-users] Re: Retrieve rulename in LHS

2008-06-03 Thread Alexander Claus
rules which can be instantiated. > BTW, I think you will be glad to know that Drools 5 brings > a whole new bunch of features for CEP processing that will > make your life so much easier, ... That's nice. Unfortunately I have to develope the system now ... :o) Alexander ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] Retrieve rulename in LHS

2008-06-02 Thread Alexander Claus
l. So, currently I mark each event occurring in the LHS of a rule in the RHS as processed by this rule and check in the LHS, if the events are not processed by the rule. I know, not very elegant, but I found this to be the easiest way. So, if you have suggestions how to overcome this lack of e

[rules-users] Retrieve rulename in LHS

2008-06-02 Thread Alexander Claus
for getting the rulename as this unique identifier string. Thanks in advance. Alexander Claus ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] How to get value of global variable from one rule to another

2007-06-15 Thread Alexander Komissarov
From: "Edson Tirelli" <[EMAIL PROTECTED]> To: "Rules Users List" Date: Fri, 15 Jun 2007 11:33:52 -0300 Subject: Re: [rules-users] How to get value of global variable from one rule to another Alexander, Remember that the LHS is always evaluated at assert time

Re: [rules-users] How to get value of global variable from one rule to another

2007-06-15 Thread Alexander Komissarov
f global variable from one rule to another (Alexander Komissarov) 2. RE: How to get value of global variable from one rule toanother (Anstis, Michael (M.)) 3. Re: How to get value of global variable from one rule to another (Edson Tirelli) 4. Running on z/OS... (jd

[rules-users] How to get value of global variable from one rule to another

2007-06-14 Thread Alexander Komissarov
t decision you can advise me to save variables value between rules? Thanks. ____ Regards, Komissarov Alexander mail: [EMAIL PROTECTED] icq: 239128267 ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

[rules-users] Re: Re: Newbie: Is this feasible w/ Drools?

2007-03-01 Thread Alexander Richter
s-users] Newbie: Is this feasible w/ Drools? To: Rules Users List Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Alexander, Seems a really interesting project indeed! Trying to answer: 1. I'm not sure what you mean by &q

[rules-users] Newbie: Is this feasible w/ Drools?

2007-02-28 Thread Alexander Richter
individually defined and run in such a way that they interact? Thanks, Alexander Richter ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] Using JBoss Rules for implementing "sparse" lookuptables

2007-02-19 Thread Alexander Varakin
there maybe thousands of customers and thousands of books, > hence potentially millions of rules. Instead to implement the rule, we end up > having to use a SQL statement: > > when > eval( (ExecuteSQL(select count(*) from CustomerRuleTable where > customer = Requestin

[rules-users] Using JBoss Rules for implementing "sparse" lookup tables

2007-02-19 Thread Alexander Varakin
Hi, I am thinking of using JBoss Rules for implementing "sparse" lookup tables, e.g. suppose I have a lookup table which contains data like this: PostalCodeOrZIP StateOrProvince Country DistanceFromNorthPole 07645NJ USA1200 -NJ USA1100 -- USA1000

Re: [rules-users] Convert logic to DRL rules

2007-02-18 Thread Alexander Varakin
ED]>> wrote: > > So Alex, if I only want to use the old syntax that is in production, > there is no way to implement my seemingly simple logic conditioning? > > Thanks for your help. > > On 2/18/07, Alexander Varakin < [EMAIL PROTECTED] > <mailt

Re: [rules-users] Convert logic to DRL rules

2007-02-18 Thread Alexander Varakin
As far as I know this syntax is new and is available in SVN only, you will have to wait till 3.1 is released or take source from SVN and build it. Bill Zhang wrote: > Hi Steven, > > Thank you very much for your help. Really appreciate. > > I still got the same error, Unexpected token '|'. I did no