Re: [rules-users] Drools and OSGi

2010-04-15 Thread Wouter Van Isterdael
I have done the following: - Created a new Project in Eclipse, "Plug-in from existing jar archives" : added the .jar files of the lib directory in org.drools.eclipse-5.1.0.SNAPSHOT.zip.

Re: [rules-users] Drools and OSGi

2010-04-15 Thread Wouter Van Isterdael
Thank you both very much. I will try both suggestions, and will get back to you as soon as I've got it figured out :-) Kind regards, Aerv 2010/4/15 Robert > Hi Aerv, > > soon I will also have to launch Drools within an OSGI environment, but I > am not there yet. But within another context (jBP

Re: [rules-users] Drools and OSGi

2010-04-15 Thread Robert
Hi Aerv, soon I will also have to launch Drools within an OSGI environment, but I am not there yet. But within another context (jBPM) I had some troubles looking similar you are having. It had something to do with the classloading. jBPM did not provide any OSGI-support, whereas Droos does,

Re: [rules-users] Drools and OSGi

2010-04-14 Thread Mark Proctor
On 14/04/2010 19:27, Wouter Van Isterdael wrote: I still seem to be having problems getting it working. The problem did not go away. I still get the same error. Would anyone know of a simple step-by-step tutorial for using Drools in a Felix OSGi environment? Preferrably within Eclipse and wit

Re: [rules-users] Drools and OSGi

2010-04-14 Thread Wouter Van Isterdael
I still seem to be having problems getting it working. The problem did not go away. I still get the same error. Would anyone know of a simple step-by-step tutorial for using Drools in a Felix OSGi environment? Preferrably within Eclipse and with Pax Runner. Any help would be very much appreciated

Re: [rules-users] Drools and OSGi

2010-04-05 Thread AervTerrh
Thanks for the reply. I will try this tomorrow and keep you posted! 2010/4/5 Jason Davidson [via Drools - Java Rules Engine] < ml-node+698731-1378279289-217...@n3.nabble.com > > I don't know if this helps, but I had to turn the MVEL JIT compiler off in > the Equinox OSGi container: >

Re: [rules-users] Drools and OSGi

2010-04-05 Thread Jason Davidson
I don't know if this helps, but I had to turn the MVEL JIT compiler off in the Equinox OSGi container: OptimizerFactory.setDefaultOptimizer("reflective"); Also, we used pre-compiled packages instead of compiling the DRL files at runtime. For example: RuleBaseConfigur

[rules-users] Drools and OSGi

2010-04-02 Thread AervTerrh
Hey, Okay. I know this problem can be found all over. But I can't seem to figure out a solution to it. Somehow I must be doing something wrong. I've created a simple application that evaluates some rules and changes some objects based on that. Everything worked fine, not a single problem there. A