[rules-users] using property files in knowlegde base

2010-05-21 Thread Kilian Reisenegger
Hi all! First of all I have to say that I'm quite new to Drools, so please be patient with me =) My question regards the property files which can be assigned to a package in the knowledge base. I'd like to store property files for internationalization in the knowledge base and work with them

Re: [rules-users] Drools Rule Engine

2010-05-21 Thread ramram
Hi, I have checked the rule template. I have the following questions on it: 1-The rule template will create rules on the number of the data that are found so what will happen if I have 100,000 lines will this mean that I will have 100,000 rules created?? 2- will this affect the performance ??

Re: [rules-users] Drools Rule Engine

2010-05-21 Thread Swindells, Thomas
-Original Message- From: rules-users-boun...@lists.jboss.org [mailto:rules-users- boun...@lists.jboss.org] On Behalf Of ramram Sent: 21 May 2010 09:25 To: rules-users@lists.jboss.org Subject: Re: [rules-users] Drools Rule Engine Hi, I have checked the rule template. I have

[rules-users] Drools Flow Loop

2010-05-21 Thread skasab2s
Hello, we want to use in our company a ruleflow with a loop. The loop should be executed every 5 minutes and should be exited on some conditions based on the facts (for example Fact1 ( value 50)). This is our resulting ruleflow (see attached image).

[rules-users] using property files in knowlegde base

2010-05-21 Thread Kilian Reisenegger
Hi all! First of all I have to say that I'm quite new to Drools, so please be patient with me =) My question regards the property files which can be assigned to a package in the knowledge base. I'd like to store property files for internationalization in the knowledge base and work with them in

[rules-users] Drools-Spring Schema location changed ????

2010-05-21 Thread KiranP
hello i wanted to use drools-spring available in snapshot version so i configured my pom respectively and pointed repository to http://snapshots.jboss.org/maven2 everything goes fine in a simple standalone application but when i use the same thing in web application (using Tomcat 6) i dont

[rules-users] Drools Road Map ????????????

2010-05-21 Thread KiranP
hello , our team has decided to use drools-flow and guvnor for a process critical application we have been evaluating drools for 6-7 mnths till now but we still didnt get any news on M2 release can anybody point me to drools RoadMAp??? answers like ...nearly finished and .will be there

Re: [rules-users] Drools Road Map ????????????

2010-05-21 Thread Swindells, Thomas
I might be wrong but I think the answer is there isn't a roadmap and concrete dates can't really exist when its a subjective of when the code has reached the milestone (there are no artificial constraints of customer deadlines to force a particular release date). What the more important

[rules-users] Drools 5.1M2

2010-05-21 Thread David Conde
Hi, Can someone please give me an estimate as to when the 5.1M2 release will be available in the maven repository. I'm waiting to get my hands on released versions of the OSGi bundles via maven. Thanks, -- David Conde CTO Calom Technologies Calom Technologies Ltd (registered in Ireland)

Re: [rules-users] Drools Road Map ????????????

2010-05-21 Thread Salaboy
I think that the decision is done by the project leader plus all the community members that are ending new features (usually not estimatable work/innovative), closing bug (non trivial ones), etc. In a big project like drools it's very difficult to set up deadlines and coordinate

Re: [rules-users] Drools Rule Engine

2010-05-21 Thread Salaboy
1) yes 2) no drools was disigned to handle a lot of rules, that's why rules templates exist 3) yes if you have a situation where your rules can be generated using a template. - Ing. Mauricio Salatino - On May 21, 2010, at 5:25, ramram ramram...@gmail.com wrote: Hi, I have checked the

[rules-users] Drools Flow Persistence with Spring Hibernate

2010-05-21 Thread xdirewolfx
Hi, I am currently using drools extensively in some of our applications. We are looking at moving away from our current bpm to use drools flow for long running processes (required persistence state of the workflow). Is there anyone out there able to guide me on using sessionFactory for

Re: [rules-users] Drools Flow Persistence with Spring Hibernate

2010-05-21 Thread Pablo Nussembaum
Hi, Working on adding support spring to flow, here you have an example app: http://www.plugtree.com/downloads/DroolsFlowSpring.tgz -- Baunax On Friday 21,May,2010 11:00 AM, xdirewolfx wrote: Hi, I am currently using drools extensively in some of our applications. We are looking at moving

Re: [rules-users] Drools Flow Persistence with Spring Hibernate

2010-05-21 Thread xdirewolfx
Thanks for response. Looked through the config, we are not using entitymanagerfactory unfortunately and we would not be able to change that for now as this is an existing app. Any work around for this? Thanks -- View this message in context:

[rules-users] from accumulate($somevar)?

2010-05-21 Thread ljnelson
I have a rule that needs to make use of the accumulate() function. It also needs the value of the first argument to the accumulate() function. Suppose there are 5 Xs in working memory, each with count fields. I need--in my consequence--access to (a) the list of 5 Xs, and (b) the result of the

Re: [rules-users] from accumulate($somevar)?

2010-05-21 Thread Esteban Aliverti
I don't know If I understood well, but did you try this? when $xs : ArrayList() from collect(X()) $total : Number() from accumulate(X($c: count), sum($c)) The accumulate will iterate over all the X and calculate the sum. Best, On Fri, May 21, 2010 at 2:12 PM, ljnelson ljnel...@gmail.com

Re: [rules-users] from accumulate($somevar)?

2010-05-21 Thread ljnelson
Esteban wrote: I don't know If I understood well, but did you try this? when $xs : ArrayList() from collect(X()) $total : Number() from accumulate(X($c: count), sum($c)) The accumulate will iterate over all the X and calculate the sum. Yes, that was the solution I happened on,

Re: [rules-users] Drools Flow Persistence with Spring Hibernate

2010-05-21 Thread Pablo Nussembaum
The current implementation is based on JPA, so it's mandatory to use an EntityManagerFactory. Could you give us more detail on how are accessing the DB and which persistence mechanism are you using? Thanks, On Friday 21,May,2010 12:49 PM, xdirewolfx wrote: Thanks for response. Looked through

Re: [rules-users] Drools 5.1M2

2010-05-21 Thread Mark Proctor
On 21/05/2010 12:10, David Conde wrote: Hi, Can someone please give me an estimate as to when the 5.1M2 release will be available in the maven repository. I'm waiting to get my hands on released versions of the OSGi bundles via maven. We tried to do it almost 2 weeks ago, but serious bugs

Re: [rules-users] Drools-Spring Schema location changed ????

2010-05-21 Thread Mark Proctor
we don't store any schemas on a web address. Mark On 21/05/2010 11:30, KiranP wrote: hello i wanted to use drools-spring available in snapshot version so i configured my pom respectively and pointed repository to http://snapshots.jboss.org/maven2 everything goes fine in a simple standalone

Re: [rules-users] Call for Vote: Drools support in IntelliJ IDEA

2010-05-21 Thread Mauricio Salatino
Hi Ansgar, I'm a Netbeans/IntelliJ IDEA developer and I do my projects using Drools and contribute with Drools using those IDEs, it's not a limitation at all, would be nice to have autocompletion and a process designer, but at the end you end up writing DRL by hand and XML for the processes. On

Re: [rules-users] Call for Vote: Drools support in IntelliJ IDEA

2010-05-21 Thread Mark Proctor
We'd love to see it, but no one seems willing to do the work, and we don't have the resources to do this within the core team. So unless someone such as yourself picks this up, hint hint ;), it's not going to happen :( Mark On 21/05/2010 22:41, Ansgar Konermann wrote: Hi everyone, I'm

Re: [rules-users] Call for Vote: Drools support in IntelliJ IDEA

2010-05-21 Thread Ansgar Konermann
On 22.05.2010 03:09, Mark Proctor wrote: We'd love to see it, but no one seems willing to do the work, and we don't have the resources to do this within the core team. So unless someone such as yourself picks this up, hint hint ;), it's not going to happen :( This is about pushing the

Re: [rules-users] Drools Flow Persistence with Spring Hibernate

2010-05-21 Thread xdirewolfx
We use hibernateSessionFactory/HibernateSession directly session.createCriteria() // session.createQuery() -- View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Drools-Flow-Persistence-with-Spring-Hibernate-tp834330p835879.html Sent from the Drools - User mailing