Re: [rules-users] Rules integration with Java -need help

2010-07-30 Thread Dinesh kumar
Hi, Thanks for your reply. Things are working. :) Regards, Dinesh -- View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Rules-integration-with-Java-need-help-tp966070p1008950.html Sent from the Drools - User mailing list archive at Nabble.com. __

Re: [rules-users] Rules integration with Java -need help

2010-07-14 Thread Pavel Tavoda
Just look to Properties documentation. You can set property from java too. Something like: Properties properties = new Properties(); properties.load(new FileInputStream(module2PropertiesFilePath)); properties.setProperty("url", "http://MyURL...";) RuleAgent agent = RuleAgent.newRuleAgent(properties

[rules-users] Rules integration with Java -need help

2010-07-14 Thread Dinesh kumar
Hi, Need help in integrating guvnor with my java application. I have the set rules to executed for a particular module as individual packages within guvnor. To fire these rules, I have separate properties file specifying the URL of each package and mention it within the application as below. F