Re: [rules-users] Looking for simple drools-camel (non-spring) example

2011-06-02 Thread Lucas Amador
Hi, maybe these tests can help you to configure drools-camel without using spring https://github.com/lucazamador/jbpm5-spring-camel-integration/blob/master/src/test/java/com/wordpress/lucazamador/jbpm/CamelIntegrationTest.java https://github.com/droolsjbpm/droolsjbpm-integration/blob/master/drools

Re: [rules-users] Drools java program on Apple Ipad?

2011-03-18 Thread Lucas Amador
To have a minimal Java support you have to jailbreak your iPhone/iPad and install jamVM using the console. The last time I tried the compiler wasn't able to compile the rules, but maybe you can create a .pkg file and load the rules from it. Anyway, I don't think it's going to work. 2011/3/18 Micha

Re: [rules-users] Drools server multiple knowledge sessions

2010-10-21 Thread Lucas Amador
Hi, it's not possible create knowledge sessions dynamically at this moment. All the ksessions should be previously defined in the knowledge-services.xml file. lucaz On 19 October 2010 03:00, Ji Oh Yoo wrote: > > Hi, > > How can I create knowledge sessions dynamically > (for example, create and

Re: [rules-users] Drools 5.1M2

2010-05-23 Thread Lucas Amador
Mark, drools-server is compiling fine in my enviroment (OSX JVM 1.5). I'm sure that Rikkola is compiling drools with JVM 1.6, because he asked me about these failed tests before and switching to 1.5 solved this. Remember that java 1.6 has is own JAXB implementation... Regards, Lucas El 24/05

Re: [rules-users] Drools 5.1 trunk - eclipse plugin "Could not find default Drools runtime"

2010-05-13 Thread Lucas Amador
ect a default Drools Runtime" is gone (in the Preferences window) Then you need to restart eclipse, after that you will see the Drools Library inside the project. If the error still on the Problems view, you can delete this safetly. After this, all the new projects created should work fine. Rega

Re: [rules-users] Drools Server Problem java.lang.String cannot be cast to [B

2010-05-07 Thread Lucas Amador
Hi, this happens when the xml command has incorrect format, and the marshaller isn't able to create the object Commands. Can you tell me wich marshaller are you using, xstream or jaxb? Also, i could help you if you send me the xml command and the model definition Thanks El 07/05/2010, a la

Re: [rules-users] Drools Execution Server Executing Twice

2010-04-28 Thread Lucas Amador
Hi, We are working on a new drools execution server on the subversion trunk that will be released in the M2. This new version includes REST/ SOAP support and Spring configuration. Also you can read a little about this here: http://lucazamador.wordpress.com/2010/04/03/drools-server-spring-conf

Re: [rules-users] Drools Execution Server Executing Twice

2010-04-19 Thread Lucas Amador
hi, are you using the new drools execution version that is on the trunk? El 19/04/2010, a las 12:48, jgautier escribió: > > Hi All, > > I have created a rule in guvnor that acts on one model. When the > rule is > executed there is a value added to a global ArrayList object. I can > verify >

Re: [rules-users] Eclipse + drools = The Eclipse JDT Core jar is not in the classpath ??

2010-03-20 Thread Lucas Amador
Patrick, you need to add the lib org.eclipse.core.jdt-version that is on your eclipse plugins folder to your drools runtime or classpath Or you can use Janino, as salaboy said Sent from my phone On 20/03/2010, at 10:44, "Patrick Sannes" wrote: > Im a real beginner with Drools, can you point

Re: [rules-users] DrlParser not supporting temporal operators

2009-11-24 Thread Lucas Amador
Hi, XML rule format wasn't updated to drools 5 new operators, because the lack of interest of the users Sent from my phone El 24/11/2009, a las 05:21, Swapnil Raverkar escribió: Can anyone help me with this? Cheers, Swapnil 2009/11/21 Swapnil Raverkar Thanks Edson. That worked.

Re: [rules-users] Reg: Drools Sliding window

2009-11-12 Thread Lucas Amador
ing sample program. Please give me that Thanks Baskaran S From: Lucas Amador To: Rules Users List Sent: Wed, 11 November, 2009 7:10:18 PM Subject: Re: [rules-users] Reg: Writing complex rules in Grided editor Hi Baskaran, you can use drools-pipeline module with the Smooks transformers to

Re: [rules-users] Reg: Writing complex rules in Grided editor

2009-11-11 Thread Lucas Amador
-memory databases so that no need to load WorkingMemoryEntryPoints with all the objects? Is there any way to load objects into WorkingMemoryEntryPoints taken from database? Thanks in advance Baskaran S --- On Tue, 10/11/09, Lucas Amador wrote: From: Lucas Amador Subject: Re: [rules-users

Re: [rules-users] Reg: Writing complex rules in Grided editor

2009-11-10 Thread Lucas Amador
Hi, the best way is use DSL because isn't possible create "complex" rules with the guided editor El 10/11/2009, a las 06:33, bas karan escribió: Hi, I am new to Drools rules. Can any one of you tell me how can we write complex rules like below using Grided editor. rule sequenceO

Re: [rules-users] DSL questions....

2009-10-22 Thread Lucas Amador
Hi Macon, you can write all on one statement, but must be separated by comma [when]User is eligible for “{testCD}”=not MyFeature(testCD == “{testCD}”) , $eligible : FeatureEligible(testCD = “{testCD}”) and you will not get any overhead at runtime because all the interpretation happens at c

[rules-users] Building StatefulKnowledgeSession with KnowledgeAgent on real time

2009-06-22 Thread Lucas Amador
Hi, exists a way to add an agent to know when the KnowledgeBase is reconstructed by the associated KnowledgeAgent?. There is an SystemEventListener interface that can be implemented and added to the agent but is only to logging. Maybe there is another event listener that i'm missing out? I know tha