[rules-users] Discriminator mode of the join node

2010-05-26 Thread HONG DENG
Hi,i am a newbie about drools and my english is not good enough ,so i hope someone can understand my question:) Who can tell me the Discriminator mode of join node that can support what kind of business scenarios? ___ rules-users mailing list rules-users@

[rules-users] Simple decision service, zero coding (was: Drools5 in tomcat 5)

2010-05-26 Thread Rubén Marrero
Hi again: We've been learning, installing and in general getting ourselves acquainted with drools. The last iteration left us with a correctly installed drools-server service, which can be used with curl on the command line. We post data and get data back, we basically ended up installin

Re: [rules-users] How to figure out the recent node(s) in a drools flow ?

2010-05-26 Thread Robert
Hm, for the event-listener way I need to have an App up and running to catch those, but what about an App which will be turned on later, but needs to know the actuall state of the process. This leaves only the first possibility, to use the persistence mechanism and check out the database ?

Re: [rules-users] Problem using Oracle as data repository for Guvnor 5.0.0.M4

2010-05-26 Thread Yan-3
Later on I found out that it was caused by the mvel-x-x.jar Drools 5.x depends on. I previously had a different version under the lib directories on glassfish server and it got picked up. Double check your lib folders under $GLASSFISH_HOME to make sure you don't have any .jar from previous versio

[rules-users] KnowledgeAgent & Incremental change-set processing

2010-05-26 Thread Esteban Aliverti
Hi all, I'm seeing a lot of KnowledgeAgent related questions in this list. That's why I made 2 posts explaining a little bit the new implementation (since 5.1 I think). In these posts I cover the incremental change-set processing of resources preformed by the agent. The first post is a high level d

[rules-users] Working on Selectors - getting 'The Selector named onlyNonDraftRules is not available'

2010-05-26 Thread John Peterson
I'm working off of Jarosław Kijanowski's blog post from 7/8/2009 on using Selectors: http://www.kijanowski.eu/index.php?site=articles&article=guvnor_selectors&lang=en I've followed the instructions for a DRL selector, including adding a line to the selector.properties file as follows: onlyNonD

Re: [rules-users] MinaClient: can't get tasks of user unless specifying taskId

2010-05-26 Thread dgimenes
well... I don't know if that's the best way, but... seen this (http://drools-java-rules-engine.46999.n3.nabble.com/Drools-Flow-Another-problem-with-Human-Task-td724086.html#a724086) I found that there's a bug about the tasks needing the property comment to work. After setting the comment propert

Re: [rules-users] Export workflow diagram.

2010-05-26 Thread Swindells, Thomas
Ah, hadn't noticed that toolbar at all, thanks you've answered my other request of auto organizing too! I always tend just to use the right mouse menu which unfortunately doesn't have the corresponding commands on it and the validate command it does have doesn't do what I'd expect (it always say

Re: [rules-users] Export workflow diagram.

2010-05-26 Thread PAYET, Manuel
Actually, there is a button for this in the toolbar associated with the editor...next to the buttons allowing you to automatically reorganize your nodes. It exports in png De : rules-users-boun...@lists.jboss.org [mailto:rules-users-boun...@lists.jboss.org] De l

[rules-users] Export workflow diagram.

2010-05-26 Thread Swindells, Thomas
Hi everyone, Is there any easy way to convert a workflow into an image file. The only way I've found of doing it so far is to take a screenshot of it opened in eclipse but I was wondering if anyone had any better ways of doing it? Thanks Thomas ***

Re: [rules-users] Detecting two instances of the same eventwithFusion Rules

2010-05-26 Thread Georg Maier
Great idea, they have a unique attribute (id) which can be ordered! Sometimes it's that simple... ;-) Solved J Thanks again Georg Von: rules-users-boun...@lists.jboss.org [mailto:rules-users-boun...@lists.jboss.org] Im Auftrag von Swindells, Thomas Gesendet: Mittwoch, 26. Mai 201

Re: [rules-users] Problem using Oracle as data repository for Guvnor 5.0.0.M4

2010-05-26 Thread Dinesh kumar
Hi,, I have the same problem. Is there any solution for this.. -- View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Problem-using-Oracle-as-data-repository-for-Guvnor-5-0-0-M4-tp58866p844751.html Sent from the Drools - User mailing list archive at Nabble.com. ___

Re: [rules-users] Detecting two instances of the same eventwithFusion Rules

2010-05-26 Thread Swindells, Thomas
You can solve this if you are able to put an ordering on the Things. Eg you could have $that : Thing(...) $other : Thing(this != $that, name > $that.name) This assumes that names are unique. Thomas From: rules-users-boun...@lists.jboss.org [mailto:rules-users-boun...@lists.jboss.org] On Behalf

[rules-users] Help needed in configuring drools guvnor with MySql

2010-05-26 Thread Dinesh kumar
Hi, I am trying to configure Drools Guvnor with MySql. I am using JBoss 4.0 . I searched the web and changed my repository.xml that was created in my JBoss/bin . But I am getting one exception after another and finally I am struck up in this exception. Any help on this will be of great help.. de

Re: [rules-users] Detecting two instances of the same event withFusion Rules

2010-05-26 Thread Georg Maier
Hi, thanks for the reply. You are right, it's just not working the otherway round, if there would be no "not" $that : Thing(..) $other : Thing ( this != $that , ...) would match always twice. For example, if there were two "Thing"'s A and B it would match for the combination AB as wel

[rules-users] Moving from Jrules to Drools a couple of Issues

2010-05-26 Thread paulnnosh
Hi Chaps, We currently use Jrules 5 and are looking at our options going forward. We are going to evaluate Drools alongside some other products. So far I like the look of Drools but there are a couple of things that are puzzling me... - In our Jrules implementation our BOM/XOM exposes some of ou

Re: [rules-users] How to figure out the recent node(s) in a drools flow ?

2010-05-26 Thread PAYET, Manuel
There are different ways of doing this: -you can activate the drools-bam module to trace the activities of your nodes in database -you can add an eventlistener to your process (session.addEventListener) and by this, you can track which node was activated etc... -probably other ways :p -Mess

[rules-users] How to figure out the recent node(s) in a drools flow ?

2010-05-26 Thread Robert
How am I able to figure out at which point (node(s)) the recent process instance is ? I was looking hard for some methods in the API, but could not find any. Cheers, Rob. -- Erstellt mit Operas revolutionärem E-Mail-Modul: http://www.opera.com/mail/ ___

Re: [rules-users] Detecting two instances of the same event with Fusion Rules

2010-05-26 Thread Wolfgang Laun
But $that : Thing(...) Thing( this != $that,...) is the standard way of ensuring that a pattern matches two distinct objects of the same class, and there is no reason why you shouldn't be able to use it with not as well: $that : Thing(...) not ( Thing( this != $that,... ) ) "Given