Re: [rules-users] History log with mySQL Database

2010-05-28 Thread PAYET, Manuel
Would that be possible that you have drools dependencies twice? (just an idea...) -Message d'origine- De : rules-users-boun...@lists.jboss.org [mailto:rules-users-boun...@lists.jboss.org] De la part de timpe Envoyé : vendredi 28 mai 2010 10:50 À : rules-users@lists.jboss.org Objet :

Re: [rules-users] History log with mySQL Database

2010-05-28 Thread timpe
LokR wrote: Would that be possible that you have drools dependencies twice? (just an idea...) That worked for the error! Thanks. I created a new Drools Project (which contains several Libraries) AND added the maven dependencies. I removed the Drools Libraries created by the Drools

[rules-users] Call for Submissions for RuleML-2010 and edBPM 2010

2010-05-28 Thread Adrian Paschke
Dear Colleagues, I would like to point you to these upcoming paper submission deadlines which might be interesting for you. --- RuleML-2010 October 21-23, 2010, Washington, DC, USA http://2010.ruleml.org/ Extended Abstract submission

Re: [rules-users] error uploading jar files: please help

2010-05-28 Thread Esteban Aliverti
Looking at your stacktrace I found: Caused by: java.lang.ClassFormatError: Incompatible magic value 175137123 in class file com/rb/model/Contact Maybe the jar you are uploading was compiled using a newer jdk version that the one used by guvnor. Can you check that? Best, 2010/5/27 Mahalakshmi

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

2010-05-28 Thread Dale Wyttenbach
I am trying to do the same but am currently struggling with a related OC4J issue (configuring OC4J to use Hibernate as JPA provider). If I get past that maybe we can compare notes. On Thu, May 27, 2010 at 12:48 PM, xdirewolfx ken.annihilat...@gmail.comwrote: Anyone managed to get drools flow

Re: [rules-users] Keeping Flows in Guvnor

2010-05-28 Thread Esteban Aliverti
Hi, Unfortunately I'm struggling with this issue now: https://jira.jboss.org/browse/BRMS-320 so I can't make any test for your question :( But in theory what you are trying to do should work fine (unless you encounter the issue I'm dealing with ;) ). I reviewed the code, and Guvnor adds all the

Re: [rules-users] error running Test Scenarios

2010-05-28 Thread Fnu Mahalakshmi
/pipermail/rules-users/attachments/20100528/d7e67c4d/attachment.html -- next part -- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 88 bytes Desc: not available Url : http://lists.jboss.org/pipermail/rules-users/attachments/20100528/d7e67c4d

[rules-users] Introspect Rules When condition

2010-05-28 Thread Kinjal Khandhar
Hello All, I am working on Drools Rules and need help on the below problem: In my .drl file say: *rule* *when* *Object1(..)* *Object2(..)* *then* * * *end;* Is there a way(Drools API or any method) in which I can scan through my rules files and get the objects...say Object1

Re: [rules-users] Introspect Rules When condition

2010-05-28 Thread Mark Proctor
On 29/05/2010 01:13, Kinjal Khandhar wrote: Hello All, I am working on Drools Rules and need help on the below problem: In my .drl file say: *rule* *when* *Object1(..)* *Object2(..)* *then* * * *end;* Is there a way(Drools API or any method) in which I can scan through my

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

2010-05-28 Thread KiranP
hi there, we r already using Drools Flow + Spring 3.0 + Hibernate JPA it works fine in our case any helpwill be very glad Drools at beginning has some clutters.but as u come over it.u'll what magnificent things they have in there Cheer's - Keep Working KiranP -- View

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

2010-05-28 Thread xdirewolfx
Thank for the response. Currently my application is already spring hibernate jta with data access through hibernate session/session factory. In order to use drools-persistence, I assume we would need to use jpa entity manager? As far as as possible, we try to not to have 2 data access unless

[rules-users] Retrieving persisted data from Guvnor's repository

2010-05-28 Thread mick00
I have created a rule in Guvnor such that firing that rule will do some validation and persist the data.I am aware that the data will be stored in Guvnor's default repository. Is there any way to retrieve that data from derby database? If so, can someone throw some light on how to retrieve it?