Re: [rules-users] Consume Dymanic rules from application

2014-04-08 Thread Anton
I am able to fix this by changing the parameters in the maven settings.xml file. Now in the application, I am trying to get out the latest built files using the Kie scanner start method. But this does not seems to be effective on a on running application. Though the changes are effective on the

Re: [rules-users] Drools workbench camel integration

2014-04-08 Thread Anton
On more analysis, reading the documents, forums and XSD Files, there is no explicit configurations found for mapping the correct dynamic knowledge base. In Guvnor, the following does the mapping to the knowledge services drools:resource type=PKG

Re: [rules-users] No setter found for property 'kBaseName' in class 'org.kie.spring.factorybeans.KBaseFactoryBean'

2014-04-08 Thread vinodkiran
Can you take a look at this simple example, and check if this helps? https://github.com/vinodkiran/kie-springmvc -- View this message in context:

Re: [rules-users] How to feed camel-server with kmodules using kie-ci?

2014-04-08 Thread Anton
Hi Wojciech, Were you able to solve your problem? We are also looking in to the same problem, and stuck here for a long time. I am able to connect and consume the local builds from a java program, but while trying to connect from a camel server I could not. Should we feed information in

Re: [rules-users] No setter found for property 'kBaseName' in class 'org.kie.spring.factorybeans.KBaseFactoryBean'

2014-04-08 Thread profversaggi
Yes - I think that will fill in the gaps nicely. I'll try it today - thank you! :-) On Tue, Apr 8, 2014 at 3:26 AM, vinodkiran [via Drools] ml-node+s46999n4029151...@n3.nabble.com wrote: Can you take a look at this simple example, and check if this helps?

[rules-users] METADATA in Decision Tables

2014-04-08 Thread Andrei Ermicioi
Can somebody point me on some article, tutorial, etc where will be describe the work with METADATA from decision tables? In documentation is just said how to set it, but how later reuse the value from METADAT no idea :( -- Andrei Ermicioi aka erani, Software Engineer at CaseNet Phone: +420

Re: [rules-users] Integration of Spring MVC 3.2.X and Drools 6.0.0.Final KIE issues ....

2014-04-08 Thread profversaggi
Just for the sake of posterity - I figured it out and have it working. If anyone should want some assistance in getting this to work pls contact me directly and I'll help you out. :-) -- View this message in context:

Re: [rules-users] METADATA in Decision Tables

2014-04-08 Thread Stephen Masters
It’s not available at runtime. It seems to be there just to help you document things and search within Guvnor/Workbench. On 8 Apr 2014, at 12:28, Andrei Ermicioi aermic...@casenetllc.com wrote: Can somebody point me on some article, tutorial, etc where will be describe the work with

Re: [rules-users] Integration of Spring MVC 3.2.X and Drools 6.0.0.Final KIE issues ....

2014-04-08 Thread Mark Proctor
Any chance you could write some details here? As I expect this will come up again. Anything you could maybe submit to the documentation? Mark On 8 Apr 2014, at 13:51, profversaggi profversa...@gmail.com wrote: Just for the sake of posterity - I figured it out and have it working. If anyone

Re: [rules-users] Integration of Spring MVC 3.2.X and Drools 6.0.0.Final KIE issues ....

2014-04-08 Thread profversaggi
Absolutely - I was thinking more on the lines of a decent tutorial to bridge the gap for the newbies. I'll do the write up this week and send it to your for perusal before sending it out to the masses ... :-) On Tue, Apr 8, 2014 at 9:22 AM, Mark Proctor [via Drools]

Re: [rules-users] METADATA in Decision Tables

2014-04-08 Thread Andrei Ermicioi
Then how it is possible to read from another the value? Let say that the Action column should rely on value specified in differente column. It is possible somehow? From: rules-users-boun...@lists.jboss.org [mailto:rules-users-boun...@lists.jboss.org] On Behalf Of Stephen Masters Sent: Tuesday,

Re: [rules-users] METADATA in Decision Tables

2014-04-08 Thread Stephen Masters
Ah … you mean to examine LHS values in the RHS? There are ways of doing that in DRL, and since 5.4 (if I remember right) it has been possible to put DRL fragments into decision table cells. However, before sending you on a wild goose chase it might be a good idea if you were to provide an

[rules-users] processing a database with many to many Relationships

2014-04-08 Thread Dave Potts
Most of the drools examples that I seen, will for have an example that process address, look for address with a given post/zip code etc on a data source that is already loaded in the knowledge session, but it include no description of how the data was loaded in the knowledge session. I have

Re: [rules-users] processing a database with many to many Relationships

2014-04-08 Thread Wolfgang Laun
It depends on the rules you're going to have. Usually the relational (normalized) form lends itself well to writing rules. OTOH, Drools provides from for unravelling List attributes, and you can use collect to create a Collection from separate facts. But, before refactoring the data you have, see