Re: [rules-users] Drools-6 WB | Why Database is Required for Indexing When GIT repo is available

2014-06-03 Thread Michael Anstis
Indexes are stored in Lucene's database which we configure to also be file system based. So the documentation is a little misleading - we don't use nor do you need a classical RDBMS system. Sent on the move On 3 Jun 2014 04:49, Zahid Ahmed zahid.ah...@emirates.com wrote: Hi, In Drools-6

Re: [rules-users] mvn deploy to workbench fails: Return code is: 405, ReasonPhrase:Method Not Allowed.

2014-06-03 Thread Michael Anstis
This is a missing feature - it looks like we're only setup to serve content from the Workbench's Maven repository; not accept new content. Could you please raise a GUVNOR JIRA (https://issues.jboss.org/browse/GUVNOR) requesting this to be provided? Thanks. On 28 May 2014 14:51, jmterrettaz

Re: [rules-users] About the Quest Of : How to push changes to cloned repo onKie-Workbench

2014-06-03 Thread Michael Anstis
If you want to push back to a Workbench's git repository you'll need to clone with ssh://user_name@repository_url. The URL can be obtained from the Administration Perspective. I know many others have been able to clone with SSH and push committed changes back to the workbench using this approach

Re: [rules-users] Rules storage without Guvnor?

2014-06-03 Thread Horváth Péter Gergely
Mark, thank you for your input, I really appreciate it. Based on that, my conclusion is the following (please correct me if I am wrong): - we should have a separate Maven project, that contains all of our business rules. - the JAR file built from this project should be installed to a

Re: [rules-users] Compilation errors in Drools examples

2014-06-03 Thread Mario Fusco
Hi, I fixed this issue on master with this commit: https://github.com/droolsjbpm/droolsjbpm-tools/commit/6bc54748e This fix will be also backported to 6.0.x branch asap. Mario -- View this message in context:

[rules-users] How to use already saved compiled packages

2014-06-03 Thread AnuRadha
Hi, We are using Drools 4.0.7 in our Insurance application(policies will be created). We are facing one issue with saved packages at run time. Using Jboss server on deployment all the rules are compiling and the .pkg files storing in a directory folder(eg. C:/Rules). On restart of Jboss server,

[rules-users] Sharing common rules between KieSession

2014-06-03 Thread Péter Gergely , Horváth
Hi All, We develop a software used by multiple companies. A small part of the rules is slightly different for every single company. We would like to package all of the rules into the application, so the code should - based on environment information - decide, which ones to load (using

[rules-users] ruleflow-group vs. agenda-group vs. activation-group ?

2014-06-03 Thread Péter Gergely , Horváth
Hi All, I've been experimenting with agenda-group and ruleflow-group features and I am now a bit confused. The documentation states that agenda-group and ruleflow-group features have been merged, but I'm not sure how this relates to activation groups. ruleflow-groups used to be a rule-flow

Re: [rules-users] Compilation errors in Drools examples

2014-06-03 Thread J Rose
Thanks so much for responding! -- View this message in context: http://drools.46999.n3.nabble.com/Compilation-errors-in-Drools-examples-tp4027650p4029832.html Sent from the Drools: User forum mailing list archive at Nabble.com. ___ rules-users

Re: [rules-users] ruleflow-group vs. agenda-group vs. activation-group ?

2014-06-03 Thread Mark Proctor
On 3 Jun 2014, at 13:16, Péter Gergely, Horváth h.pe...@mailbox.hu wrote: Hi All, I've been experimenting with agenda-group and ruleflow-group features and I am now a bit confused. The documentation states that agenda-group and ruleflow-group features have been merged, but I'm not sure

[rules-users] Activation-group ignored when working with events in Drools 6 ?

2014-06-03 Thread kenota
It seems that activation-group rule attribute is ignored when rule works with events (@role(event)). Example rule file: declare LocalEvent @role(event) end rule Rule1 activation-group test when $event : LocalEvent() then System.out.println(I am rule 1 + $event); end rule Rule2

Re: [rules-users] Workbench: Error after cloning repository

2014-06-03 Thread Steinmetz, Jean-Philippe
Does anyone have an idea why I am getting these compilation errors? This is currently blocking me at the moment and I have been able to find a solution. Thanks! On Fri, May 30, 2014 at 10:51 AM, Steinmetz, Jean-Philippe jpsteinm...@theworkshop.us.com wrote: Okay I was able to disable

[rules-users] KnowledgeBuilderFactory.newKnowledgeBuilder(KnowledgeBase kbase) throws exception

2014-06-03 Thread A. Craig West
I had some issues getting my codebase to work in Drools 5.6.0 (it worked in 5.5) so I am now trying the legacy api with 6.0.1Final. When I call: KnowledgeBuilderFactory.newKnowledgeBuilder(KnowledgeBase kbase) I get an exception: java.lang.ClassCastException:

Re: [rules-users] Workbench: Error after cloning repository

2014-06-03 Thread Michael Anstis
Can you create a repository that you can share to reproduce the problem? Sent on the move On 3 Jun 2014 19:10, Steinmetz, Jean-Philippe jpsteinm...@theworkshop.us.com wrote: Does anyone have an idea why I am getting these compilation errors? This is currently blocking me at the moment and I

Re: [rules-users] Activation-group ignored when working with events in Drools 6 ?

2014-06-03 Thread Mark Proctor
We’ll look into it, it may already be fixed by this: https://github.com/sotty/drools/commit/15cfe29d946d7e33520c20b4f3a61bedeeab05cc Mark On 3 Jun 2014, at 18:33, kenota unpla...@gmail.com wrote: It seems that activation-group rule attribute is ignored when rule works with events

Re: [rules-users] Compilation errors in Drools examples

2014-06-03 Thread rjh
Hi Mario, Thanks for fixing the problem. I just installed the plugin, but this time, it stops doing validation. It doesn't report any error in the .drl file, even for obvious syntax errors. Below is the steps I did: 1. git clone https://github.com/droolsjbpm/droolsjbpm-tools.git 2. cd