Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-30 Thread arrehman
This is the dependency that I have in my grails/drools application after upgrading to 5.3. This eliminates all the ClassNotFoundErrors. I think I resolved the dependency issue. runtime 'org.drools:drools-core:5.3.0.Final' runtime 'org.drools:drools-compiler:5.3.0.Final'

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-30 Thread arrehman
This issue I have been facing has been resolved. I have been informed of a better way to see the errors (another thread). Some of the domain objects were returning def (i.e. Object) instead of Boolean. This was working in 5.2 but failing in 5.3. I changed the code. It is working now. Abdul --

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-26 Thread Andrew Waterman
I am seeing this exact error when I upgrade form 5.2.0.Final to 5.3.0.Final. I had seen some other issues when upgrading from 5.2.0.M2 to 5.2.0.Final relating to the use of interfaces and implementing objects in functions. The KnowledgeBuilder is complaining about not being able to find a

[rules-users] Drools 5.3.0 Dependencies

2011-10-25 Thread arrehman
Hi, I was using drools 5.2.0 in my grails 2.0.0.M2 application. I use Drools expert to execute a .drl file I have. The three dependencies that I have set up for this to work was: runtime 'org.drools:drools-core:5.2.0.Final' runtime 'org.drools:drools-compiler:5.2.0.Final'

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-25 Thread Michael Anstis
I assume you replaced both drools-core and drools-compiler with those for 5.3? Furthermore, you should endeavour to use knowledge-api which contains the public API. Can you isolate the rules from grail, to understand if it is an integration issue too? On 25 October 2011 20:04, arrehman

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-25 Thread arrehman
Hi manstis, I will look into incorporating knowledge-api jar and try. Thanks. Anywhere these dependencies are documented clearly? The issue is clearly drools related, i have isolated this already in another git branch meant only for drools upgrade. Abdul -- View this message in context:

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-25 Thread arrehman
I have included knowledge-api.jar thats not working -- View this message in context: http://drools.46999.n3.nabble.com/Drools-5-3-0-Dependencies-tp3452346p3452445.html Sent from the Drools: User forum mailing list archive at Nabble.com. ___

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-25 Thread arrehman
Yes locally in machine just to make sure i have only drools upgrade happening. My issues are because of this upgrade guaranteed. The error message drools is giving me is misleading: service.RulesService Error executing drools rules Unexpected global [dateService] No stacktrace, nothing :o Abdul

Re: [rules-users] Drools 5.3.0 Dependencies

2011-10-25 Thread Michael Anstis
I think you are going to need to provide some code and rule definitions to help solve your problem. sent on the move On 25 Oct 2011 21:22, arrehman arrehma...@yahoo.com wrote: Yes locally in machine just to make sure i have only drools upgrade happening. My issues are because of this upgrade