Re: [rules-users] Is drools the solution for my requirement.

2013-08-27 Thread nitind
Thanks for the reply, so like invoice no check the rule might further have sub rule and some of them might be periodically changed or added. Another point I got from your revert was on the Client access. So is it possible with drools to have a UI for End users where they can configure their own r

Re: [rules-users] Problem with PKG from guvnor

2013-08-27 Thread Demian Calcaprina
Thanks Genene. In fact I was able to get the cause of my issue. I created a ticket with the explanation and a pull request with a possible solution. https://issues.jboss.org/browse/DROOLS-243 Thanks, Demian On Tue, Aug 27, 2013 at 12:26 PM, Genene Geda wrote: > Hi-, > I think I had similar

Re: [rules-users] Line breaks in DSLR

2013-08-27 Thread Stephen Masters
Every DSL template phrase must be written on a single line. That's just how the syntax works. Hence why I do unfortunately have lines of DSL that are over 1000 characters long. :( Steve On 27 Aug 2013, at 19:14, Stefan wrote: > I have written a simple DSLR-rule with a rather long sentence

[rules-users] Line breaks in DSLR

2013-08-27 Thread Stefan
I have written a simple DSLR-rule with a rather long sentence in the when-part: - rule "NR3620" when tariff number of a position starts with "0301" and the duty measure is one of "112", "122", "142", "141", "143" and cod

Re: [rules-users] How Answers to community question Appear on more than one site

2013-08-27 Thread Mark Proctor
Nabble is simply a 3rd party service, that provides web access to mailing lists, such as this one. I don't know about Marshut. A quick glance looks like they are trying to build a simlar service as nabble, but combined with features found at stack exchange. These are all 3rd party services. The

[rules-users] issue running Drools Expert 6.0 CR2 inside OSGi

2013-08-27 Thread yelin66
I was able to have Drools Expert 5.3 running inside OSGi. However, the bundles from 5.4/5.5 were having problem even to start inside the OSGi container. I tried 6.0 CR2 recently, and encountered the following issue: • Basically, my model class(es) failed to be loaded from the drools-core & drools-

Re: [rules-users] Problem with PKG from guvnor

2013-08-27 Thread Genene Geda
Hi-, I think I had similar issue and resolved by looking at one of these: 1. How the changes set is loaded: Resource changeset = ResourceFactory.newFileResource(changeSetFilePath); //.newClassPathResource(changeSetPath); 2.If the package not yet built, In GUVNOR, I go to

Re: [rules-users] Persistence and event expiry

2013-08-27 Thread Wolfgang Laun
There is no telling whether this works "as intended" because there is no documentation (I know of) that would describe the intentions of automatic expiry. (My thoughts on the matter: But a session started in STREAM mode begins with something I like to compare to the Big Bang, and there is no Time

[rules-users] Persistence and event expiry

2013-08-27 Thread DanielStahl
Hi, I'm quite new to Drools, and very excited about the possibilities it offers, but I need a bit of advice. I'm using Drools 6.0.0.CR1 to run a Stream session in my application. The application will be running for extended periods of time, so I need to be able to delete facts over time. I can s

[rules-users] drools server is leaking memory in 5.4 version

2013-08-27 Thread shameer...@gmail.com
hi, I am using drools 5.4.final and executing drools through drools jbpm server. After every rule execution the memory usage is getting increased. It will go till the max allocated memory and die. The heap dump shows org.drools.reteoo.ReteooRuleBase is growing to Gbs. Is any one facing same issue

Re: [rules-users] Is drools the solution for my requirement.

2013-08-27 Thread Wolfgang Laun
What sort of data structure is "document"? How is the "individual" found in the document? How are "authorized agents" available to the app? -W On 27/08/2013, nitind wrote: > Hi, > >We have 200 odd rules to be configured and wanted to know if drools can > be the optimum solutions. The rules

Re: [rules-users] Is drools the solution for my requirement.

2013-08-27 Thread Mauricio Salatino
It all depends on how often those rules will change and how often you will add new ones. It is also important to understand if the business users wants to see the rules and understand what is going on, or everything will be hidden? >From the maintainance point of view, the rules can help you out i

[rules-users] Is drools the solution for my requirement.

2013-08-27 Thread nitind
Hi, We have 200 odd rules to be configured and wanted to know if drools can be the optimum solutions. The rules are broadly classified into 2 categories example 1 : We need to compare invoice no value in 10 documents and if it matches perform A if it does not match perform B

[rules-users] How Answers to community question Appear on more than one site

2013-08-27 Thread Zahid Ahmed
Hi, I also wanted to know that I replied on rules-users mailing list and now my answer is listed on http://www.marshut.com/ website instead of jboss community. Some answers get displayed at nabble.com Howcome some answers are visible on marshut and some on nabble. I just want to know is t

Re: [rules-users] Guvnor - more than one resource in changeset.xml

2013-08-27 Thread Zahid Ahmed
Hi, U can access assets from two different packages using one ChangeSet definition in Guvnor. Multiple "" tags can be defined in an add "" tag. Following will be the configuration in ChangeSet Note : "" tag can have only one tag and that tag will occur only once. Tags allowed in changeset.xsd a

[rules-users] Guvnor - more than one resource in changeset.xml

2013-08-27 Thread rganesh84
I have 2 packages in Guvnor UI having different set of rule assets in it. pkg1 -> UI rules pkg2 -> Business rules In the java application code base, is it mandatory to have 2 change set xmls with different package contents? [Java] // for UI rules kagent.applyChangeSet(ResourceFactory.newClassPat