Re: [rules-users] error while deploying drools guvnor 5.5 on was8

2013-05-21 Thread abhinay_agarwal
Were you able to run it successfully ? -- View this message in context: http://drools.46999.n3.nabble.com/error-while-deploying-drools-guvnor-5-5-on-was8-tp4023627p4023894.html Sent from the Drools: User forum mailing list archive at Nabble.com. ___

[rules-users] Is it possible to leave the then block empty?

2013-05-21 Thread Aleksandar Toshovski
Hello, I have many rules, which have exactly the same then block. Is it possible to leave the then cause empty? I only need to know is if a rule was activated or not and for this reason I'm using WorkingMemoryConsoleLogger.activationCreated(). Best Regards, Aleksandar Toshovski

Re: [rules-users] Is it possible to leave the then block empty?

2013-05-21 Thread Wolfgang Laun
On 21/05/2013, Aleksandar Toshovski bale...@gmail.com wrote: Hello, I have many rules, which have exactly the same then block. Is it possible to leave the then cause empty? Yes. -W I only need to know is if a rule was activated or not and for this reason I'm using

Re: [rules-users] Is it possible to leave the then block empty?

2013-05-21 Thread Aleksandar Toshovski
How? When I try something like this: rule AttributeChange EAttribute id when diff: IDiff( operationType == OperationType.ADD, differenceType == DiffType.ATTRIBUTE, parameter==id, !oldValue.equals(newValue) ) end I get the following error: Error: [12,0]: [ERR 102] Line 12:0

Re: [rules-users] Is it possible to leave the then block empty?

2013-05-21 Thread Wolfgang Laun
On 21/05/2013, Aleksandar Toshovski bale...@gmail.com wrote: Also I get an error when I try to use something like this: rule AttributeChange EAttribute id when diff: IDiff( operationType == OperationType.ADD, differenceType == DiffType.ATTRIBUTE, parameter==id,

Re: [rules-users] understanding the use of Functions in Guvnor

2013-05-21 Thread IPatel
Anyone out there who know why i cannot see my method on the drop down list? -- View this message in context: http://drools.46999.n3.nabble.com/understanding-the-use-of-Functions-in-Guvnor-tp4023759p4023909.html Sent from the Drools: User forum mailing list archive at Nabble.com.

Re: [rules-users] understanding the use of Functions in Guvnor

2013-05-21 Thread Michael Anstis
Use of functions are not integrated into Guvnor's guided editors. You will have to use free-format DRL sections and functions as documented in Drools Expert user guide. On 21 May 2013 19:22, IPatel ishita.pa...@usbank.com wrote: Anyone out there who know why i cannot see my method on the drop

Re: [rules-users] Knowledge Agent unexpected behavior for remote resource at guvnor

2013-05-21 Thread bhochhi
I added kagent.setSystemEventListener(new PrintStreamSystemEventListener()); to debug futher, its logging following as if it found changes even with no changes made at guvnor. It just seems bug to me. Any comments? -- View this message in context:

Re: [rules-users] Is it possible to leave the then block empty?

2013-05-21 Thread Aleksandar Toshovski
Thanks. It works! On May 21, 2013, at 7:20 PM, Wolfgang Laun wrote: On 21/05/2013, Aleksandar Toshovski bale...@gmail.com wrote: Also I get an error when I try to use something like this: rule AttributeChange EAttribute id when diff: IDiff( operationType == OperationType.ADD,