Re: [rules-users] Validation in Guvnor fails due to unrecognized method of implemented interface

2009-07-10 Thread Toni Rikkola
Hi Brody, Some things that you can try: 1. Try refreshing the browser after you have moved to 5.0.1. Maybe it is still using the old javascripts and that is why it is not showing the editors. 2. Try rebuilding the packages. 3. Move repository from 5.0.0.CR1 to 5.0.1 using the export/import

Re: [rules-users] Using field values of an ENUM in the decision table

2009-07-10 Thread Visu Nageswaran
Is the following rule in-valid? when $c: Computer() eval($c.getMemory().getValue() == 512) then System.out.println( THIS IS IT XXX ); ___ Can someone help me understand if eval is used incorrectly to invoke the nested accessor method getValue()? Null pointer

[rules-users] Hibernate Query delivers wrong values

2009-07-10 Thread Thomas Zwifl
Hi there! I'm working with the latest snapshot-releas of v5.1 (build3098-rev27324-20090630-0403). My application consists of two independent processes, both are repeated periodically (timer-node). the processes both have ruleset-nodes. some rules are querying a database with hibernate in the

RE: [rules-users] Hibernate Query delivers wrong values

2009-07-10 Thread Anstis, Michael (M.)
I assume ...but when I change a field of a db-record manually... means you go into the database and tweak a field? In which case this is definitely a hibernate session usage issue and I'd suggest you read up on the latter. With kind regards, Mike -Original Message- From:

Re: [rules-users] Using field values of an ENUM in the decision table

2009-07-10 Thread Visu Nageswaran
Modifying the eval expression to include a check for NULL got it working: when $c: Computer() eval( $c.getMemory()!=null $c.getMemory().getValue().equals(512) ) then System.out.println( THIS IS IT XXX ); end Visu Nageswaran wrote: Hello, I am posting a simpler version of

Re: [rules-users] Hibernate Query delivers wrong values

2009-07-10 Thread Greg Barton
Yes, Hibernate caches in several ways. Go here: http://docs.jboss.org/hibernate/stable/core/reference/en/html_single/ Search for cache. :) Some caching you can disable. (The 2nd level session factory cache.)

Re: [rules-users] ClassCastException when using an accumulate function on a locally declared type

2009-07-10 Thread Edson Tirelli
This was a bug. It is fixed now. Thanks for reporting. https://jira.jboss.org/jira/browse/JBRULES-2202 Edson 2009/7/9 bill simms sitri...@gmail.com Hello, Recently I've been working with Drools version 5.0.1 to set up an event processor. While doing so I have come across

[rules-users] Drools Roadmap - Planned Release 5.1 release date

2009-07-10 Thread McDonald, Daniel
Hi, I was wondering if there is a planned release date for Release 5.1? Thank you, Daniel McDonald Fidelity National Information Services - Research Development Office phone: (972) 691-6593 Mobile phone (214) 697-8163 _ The information contained in this message is

Re: [rules-users] Drools Roadmap - Planned Release 5.1 release date

2009-07-10 Thread Mark Proctor
McDonald, Daniel wrote: Hi, I was wondering if there is a planned release date for Release 5.1? end of this month, beginning of next. I high level overview, nothing concrete, is probably something like: BPM Process Console (embedded in Guvnor) BPMN2 (subset of) as default skin + extensions

Re: [rules-users] Detect rules changes at runtime using a push mechanism

2009-07-10 Thread rviswanathan
Hi I read the drools documentation and this is what I find quote The KnowlegeAgent is created by the KnowlegeAgentFactory. The KnowlegeAgent provides automatic loading, caching and re-loading, of resources and is configured from a properties files. The KnowledgeAgent can update or rebuild this

[rules-users] W3C published Last Call working drafts for Rule Interchange Format

2009-07-10 Thread Gary Hallmark
The W3C RIF working group has published six Last Call working drafts [1]. Of particular interest here is the RIF Production Rule Dialect[2] which defines a language dialect for exchange of production rules. Please send any comments to public-rif-comme...@w3.org by July 31, 2009. Gary [1]

Re: [rules-users] looking for more information on drools expert

2009-07-10 Thread Edson Tirelli
Hi Aldian, I think you misunderstood the semantics of forall(). Forall in Drools is the same forall quantifier from the First Order Logic. http://en.wikipedia.org/wiki/First-order_logic So, if you want to write a rule that says: When for all equipments of type 'router' there is an

Re: [rules-users] WebService invocation from Drools Flow

2009-07-10 Thread Mark Proctor
bdoshi wrote: Hi, We have situation where we would like to invoke webservice call from our process flow. Is there out of box component like email, log, WS-HumanTask etc. for invoking webservice? Seems like we have to make use of WorkItem and implement within WorkItemHandler. Is that the