Re: [rules-users] expert mailing list

2012-08-14 Thread Salaboy
Probably a linked in private group can do the job, I dont know if it supports all the features that you mention but at least you have the contacts network to checks who joins and post new topics. With a group of moderators the topics can be restricted easily Sent from my iPhone On 14 Aug 2012,

[rules-users] expert mailing list

2012-08-14 Thread Mark Proctor
As the user list is now high volume, i'm contemplating an "invite only" expert list. I'm not sure who this would work, or if it's practical. But the idea is to have a lower volume list, with a higher quality of technical questions and discussions. This might make it easier for people to be engag

Re: [rules-users] Guided Rule option not visible in Eclipse

2012-08-14 Thread Mark Proctor
On 14 Aug 2012, at 19:29, dme1 wrote: > Thanks for the detailed response. With the 5.4 plugin I do not see the > "Guided Rule" option, just the "Rule Resource", so the screeshot seems to be > from an earlier version. > ok, thanks. we'll fix docs for next release. Mark > dme. > > > > -- > Vi

Re: [rules-users] Drools 6 - approximate release date?

2012-08-14 Thread Mark Proctor
On 14 Aug 2012, at 09:44, Michal Bali wrote: > Hi guys, > > anybody knows when is Drools version 6 going to be released? In a year? Year > and a half? More? At this stage it's hard to tell. I would hope within a year from now. There will be a a lot of dramatic changes, so we'll have a long be

Re: [rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Rana
I reads my changeSet file but it is again not able to read the drl file that is specified in the changeSet.xml. My STS (Eclipse) and Workspace is in D: drive, so that files are also in D: drive. Caused by: java.lang.IllegalArgumentException: 'D:/Venkat/workspace/pi-affiliate-drools-rule-engine/bi

Re: [rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Michael Anstis
Strangely it appears it works no better than before; you have simply moved the error from a malformed classpath reference to a malformed file-system reference. The proximate cause is now "Caused by: java.net.MalformedURLException: unknown protocol: d". The path "'D:/Venkat/workspace/pi-affiliate-d

Re: [rules-users] Guided Rule option not visible in Eclipse

2012-08-14 Thread dme1
Thanks for the detailed response. With the 5.4 plugin I do not see the "Guided Rule" option, just the "Rule Resource", so the screeshot seems to be from an earlier version. dme. -- View this message in context: http://drools.46999.n3.nabble.com/Guided-Rule-option-not-visible-in-Eclipse-tp40191

Re: [rules-users] Guided Rule option not visible in Eclipse

2012-08-14 Thread Michael Anstis
Hello, Eclipse only has the text based DRL rule editor. This is "guided" in the sense that it has (should have, I've not looked recently) auto-complete. GWT is Google Web Toolkit and is used by Guvnor; hence the statement "GWT based Guided Editor in Guvnor". The editor that has been removed was

Re: [rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Rana
Strangely it did work for this kagent.applyChangeSet(ResourceFactory.newFileResource(ruleFile)); but I get this exception now. My change set file has folder locations of drools files java.lang.RuntimeException: Unable to parse ChangeSet at org.drools.agent.impl.KnowledgeAgentImpl.get

Re: [rules-users] Guided Rule option not visible in Eclipse

2012-08-14 Thread dme1
Hi, Thanks for the response. The link states - "The BRL Guided Editor has been removed due to lack of interest and it falling behind. Its removal allows more focus on the GWT based Guided Editor in Guvnor. The DRL, text-based,* Guided Editor *remains unaffected.". So the Guided Editor thats unaf

Re: [rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Michael Anstis
This is a classpath related issue. Please ensure src/main/resources is on your classpath (if running from within Eclipse for example, files within the resources folder are normally excluded). On 14 August 2012 17:12, Rana wrote: > This is the place I am getting the NPE. > > URL url = >

Re: [rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Rana
This is the place I am getting the NPE. URL url = this.getClass().getResource("/src/main/resources/DroolsChangeSet.xml"); Thanks. -- View this message in context: http://drools.46999.n3.nabble.com/Getting-Null-pointer-exception-for-applying-change-set-tp4019117p4019121.html Sent from

Re: [rules-users] Guided Rule option not visible in Eclipse

2012-08-14 Thread Michael Anstis
http://docs.jboss.org/drools/release/5.3.0.Final/droolsjbpm-introduction-docs/html_single/index.html#d0e823 It was removed in 5.2 (onwards) "...due to lack of interest and it falling behind...". On 14 August 2012 16:45, dme1 wrote: > Hi, > I have installed Drools v5.4.0 Final. I have installed

[rules-users] Guided Rule option not visible in Eclipse

2012-08-14 Thread dme1
Hi, I have installed Drools v5.4.0 Final. I have installed GEF and then installed Drools Plugin for Eclipse from the "Drools Introduction and General User Guide". I can see the Drools Perspective and Drools Wizard in Eclpse but do not see the "Guided Rule" option. How can I enable the Guided Editor

Re: [rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Michael Anstis
Any particular place you get the NPE? Is variable "url" null? On 14 August 2012 16:18, Rana wrote: > Having trouble getting the URL, getting null when getting the ChangeSet > file. > Please let me know what is the problem. > > > ResourceChangeScannerConfiguration conf = > > ResourceFactory.getR

[rules-users] Getting Null pointer exception for applying change set

2012-08-14 Thread Rana
Having trouble getting the URL, getting null when getting the ChangeSet file. Please let me know what is the problem. ResourceChangeScannerConfiguration conf = ResourceFactory.getResourceChangeScannerService().newResourceChangeScannerConfiguration(); conf.setProperty("drools.resou

Re: [rules-users] Events do not get removed automatically

2012-08-14 Thread Winfried Umbrath
Thanks for the quick answer. But even when adding a temporal constraint i get the same result: rule "choosingSuitTimeout" when $discardCardEvent : GenericEvent(eventName=="discardCard", card.equals("c"), $playerIndex : playerIndex) from entry-point "my stream" not (GenericEvent(event

Re: [rules-users] Events do not get removed automatically

2012-08-14 Thread Wolfgang Laun
It's right here:... On 14/08/2012, Winfried Umbrath wrote: > Hi guys, > > the drools fusion documentation states that > > "One of the benefits of running the engine in STREAM mode is that the > engine can detect when an event can no longer match any rule due to its > temporal constraints. ..."du

[rules-users] Events do not get removed automatically

2012-08-14 Thread Winfried Umbrath
Hi guys, the drools fusion documentation states that "One of the benefits of running the engine in STREAM mode is that the engine can detect when an event can no longer match any rule due to its temporal constraints. When that happens, the engine can safely retract the event from the session

[rules-users] MVEL version

2012-08-14 Thread paco
Hello The rules have been written with guvnor 5.0 I have imported it on guvnor 5.3.0 However I met some syntax errors due to the new version of MVEL. I can not find new versions of MVEL related to guvnor 5.3.0 Can someone tell me how I can get to know the version of MVEL of guvnor 5.3.0 ? I’m usin

[rules-users] Drools 6 - approximate release date?

2012-08-14 Thread Michal Bali
Hi guys, anybody knows when is Drools version 6 going to be released? In a year? Year and a half? More? Thank you in advance. Best regards, Michal ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-us