Re: [rules-users] CompositiveClassLoader$CachingLoader$load method intermittently hangs

2014-05-15 Thread Steven Williams
Steve --- Steven Williams On Wed, Mar 19, 2014 at 12:31 AM, mikerod wrote: > I cannot easily reproduce an issue that I'm seeing. This is an > intermittent > issue that happens probably 3% of the time or less. > > This is observed beha

Re: [rules-users] Jetty NoSuchMethodError Lorg/eclipse/jdt/core/compiler/CategorizedProblem

2013-11-26 Thread Steven Williams
. --- Steven Williams On Wed, Nov 27, 2013 at 3:01 AM, captainrhino < graeme.kitc...@axa-travel-insurance.com> wrote: > > I am running some drools application code through Jetty and I get the > following error. I'm guessing

Re: [rules-users] How to use type-safe enums in rule condition

2013-11-13 Thread Steven Williams
t the rules. I reckon there is probably a better way to achieve this however we didn't spend a lot of time thinking about it. cheers Steve ------- Steven Williams On Thu, Nov 14, 2013 at 12:40 AM, Wolfgang Laun wrote: > Just curi

Re: [rules-users] How to use type-safe enums in rule condition

2013-11-12 Thread Steven Williams
I use something like the following in rules to good effect: Country( this == Country.USA ) --- Steven Williams On Wed, Nov 13, 2013 at 12:20 AM, droolster wrote: > Thanks Steve for the advice and code! Awes

Re: [rules-users] Classloading error with AspectJ and Drools 5.2.0.Final

2011-09-07 Thread Steven Williams
FYI - https://issues.jboss.org/browse/JBRULES-3122 was raised for this. cheers Steve 2011/8/31 Wolfgang Laun > This should be fixed by now on the way to 5.3.0, returning an empty > collection - I've seen a confirming email from Mark Proctor. > -W > > > On 30 August 2011 13:27, Sammi wrote: >

Re: [rules-users] Classloading error with AspectJ and Drools 5.2.0.Final

2011-07-05 Thread Steven Williams
Clarification to this - it does also happen when we run our server. So this is preventing us from upgrading to 5.2 My guess is that getResources should return getParent().getResources() rather than null. regards Steve On Wed, Jul 6, 2011 at 1:42 PM, Steven Williams wrote: > Hi, > > I

[rules-users] Classloading error with AspectJ and Drools 5.2.0.Final

2011-07-05 Thread Steven Williams
Hi, I have just upgraded to Drools 5.2.0.Final and am getting a weird error when running unit tests. java.lang.NullPointerException at org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptor.parseDefinitions( ClassLoaderWeavingAdaptor.java:251) at org.aspectj.weaver.loadtime.DefaultWeavingCont

Re: [rules-users] Error opening dslr in Eclipse on Mac

2011-04-30 Thread Steven Williams
Java 1.6, Drools 5.1.1 On Fri, Apr 29, 2011 at 7:46 PM, Benson Fung wrote: > What version of jdk and Drools plugin are you using? > > 2011/4/29 Steven Williams : > > Hi, > > I am running Eclipse Helios on Mac OS X 10.6.7 with the Drools 5.1.1 > plugin > > and c

[rules-users] Error opening dslr in Eclipse on Mac

2011-04-29 Thread Steven Williams
Hi, I am running Eclipse Helios on Mac OS X 10.6.7 with the Drools 5.1.1 plugin and cannot open DSLR files with the error below. This error also occurs if I create a new Drools project, create a new rule resource and select the Use a DSL checkbox. DRL files open fine. Could not open the editor: 1

Re: [rules-users] execute particular rules programmatically and dynamically

2011-03-31 Thread Steven Williams
I have actually used this method for the one valid case I have thought of - unit testing rules. Steve 2011/4/1 Swindells, Thomas > Agreed, > > But if you really do want to you can setup an agenda filter so that only > the activation for the rule you care about is fired – but I don’t think > t

[rules-users] Configure custom SystemEventListener via Drools Spring

2011-03-23 Thread Steven Williams
Hi, I have just started using the drools-spring integration (5.1.1) and I would to use my own SystemEventListener instead of the default PrintStreamSystemEventListener however I am not sure if it is possible or how to configure it. thanks Steve ___ rule

Re: [rules-users] KnowledgeAgent Issue

2011-03-21 Thread Steven Williams
gt; Please file a bug report and let me know. > > Best Regards, > > > > Esteban Aliverti > - Developer @ http://www.plugtree.com > - Blog @ http://ilesteban.wordpress.com > > > 2011/3/21 Steven Williams > >> Hi all, &g

[rules-users] KnowledgeAgent Issue

2011-03-21 Thread Steven Williams
Hi all, I am trying to use a Knowledge Agent in 5.1.1 with a change set with a few different packages and resource types in it, and I am running into a problem where it is not adding all the packages. Looking at the code I can see that KnowledegeAgentImpl.createPackageFromResource has the followin

Re: [rules-users] Inserting collection of facts in rule Consequence

2009-02-15 Thread Steven Williams
I normally do something like when $creditContract : CreditContract() $o : Applicant() from $creditContract.coApplicantArray then insert($o); end retract would be something like when $o : Applicant( ) CreditContract( coApplicantArray contains $o ) then retract($o); end ch

[rules-users] Eclipse guvnor plugin issue

2009-02-05 Thread Steven Williams
Hi all, I am using the snapshot version of the eclipse plugin from Feb 5. When I attempt to drag a file from the repository explorer into the Navigator view I get the following exception: java.lang.Exception: Could not create directory C:\Documents and Settings\Administrator\workspace\.metadata\.

[rules-users] RuleFlow question

2009-01-28 Thread Steven Williams
Hi guys, I am playing with the OrderExample in drools-examples and was wondering how I get access in my rules to the parameters that are sent to startProcess? e.g. Map parameters = new HashMap(); parameters.put("order", order); parameters.put("orderId", order.getOrderId())

[rules-users] KnowledgeBuilderConfiguration

2009-01-20 Thread Steven Williams
ously do: config.addAccumulateFunction(entry.getKey(), entry.getValue()); Now with KnowledgeBuilderConfiguration we had to change the Map to Map and do the following: config.setProperty("drools.accumulate.function." + entry.getKey(), entry.getValue()); which seems like a retrograde st

Re: [rules-users] guvnor - cannot delete business rule assets

2009-01-20 Thread Steven Williams
> https://lists.jboss.org/mailman/listinfo/rules-users > > -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 steven.willi...@objectconsulting.com.au www.objectconsulting.com.au consulting | development | tra

[rules-users] Drools 5 Accumulate Function

2009-01-18 Thread Steven Williams
) ... My guess is this is a bug. For now I will just go back to implementing org.drools.base.accumulators.AccumulateFunction. cheers Steve -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 steven.willi...@objectconsulting.com.au

Re: [rules-users] How to access data after rule fires

2009-01-12 Thread Steven Williams
rules fire, but I don't see that this works. >> >> Also googled the heck out of this and looked in all the documentation. >> I must be missing something, because the docs generally are pretty good. >> >> >> Any hints? >> >> Thanks in advance, >> >> Robert Co

[rules-users] Drools 5 migration

2009-01-08 Thread Steven Williams
5 snapshot. thanks Steve -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 steven.willi...@objectconsulting.com.au www.objectconsulting.com.au consulting | development | training | support our experience

[rules-users] Re: Drools nightly snapshot

2009-01-08 Thread Steven Williams
, Jan 9, 2009 at 2:01 PM, Steven Williams wrote: > Hi all, > > I was wondering if anyone knows how to get the nightly snapshot for Drools > 5 via maven? > > I am using the http://snapshots.jboss.org/maven2 repository but the > snapshot jars have different names to what

[rules-users] Drools nightly snapshot

2009-01-08 Thread Steven Williams
-5.0.0-SNAPSHOT.jar). Can anyone tell me what settings I should use in my pom to get the latest version? thanks Steve -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 steven.willi...@objectconsulting.com.au

Re: [rules-users] drools query

2008-12-10 Thread Steven Williams
n Wed, 12/10/08, Steven Williams <[EMAIL PROTECTED]> wrote: > > > From: Steven Williams <[EMAIL PROTECTED]> > > Subject: Re: [rules-users] drools query > > To: "Rules Users List" > > Date: Wednesday, December 10, 2008, 4:59 PM > > Have a look here >

Re: [rules-users] drools query

2008-12-10 Thread Steven Williams
_ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectcons

Re: [rules-users] having counter in drl

2008-12-09 Thread Steven Williams
gt; https://lists.jboss.org/mailman/listinfo/rules-users > >> > > > > ___ > > rules-users mailing list > > rules-users@lists.jboss.org > > https://lists.jboss.org/mailman/listinfo/rules-users > > > > > >

Re: [rules-users] having counter in drl

2008-12-08 Thread Steven Williams
Sorry - I accidentally hit send. Something like: when then insert(new Integer(0)); end when $i: Integer(value < 100) Foo(some condition) then retract($i); insert(new Integer($i.intValue() + 1)); ... end On Tue, Dec 9, 2008 at 10:54 AM, Steven Williams <[EMAIL PROTECTED]

Re: [rules-users] having counter in drl

2008-12-08 Thread Steven Williams
w.nabble.com/having-counter-in-drl-tp20904469p20904469.html > Sent from the drools - user mailing list archive at Nabble.com. > > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rule

Re: [rules-users] how to find the rule name

2008-07-02 Thread Steven Williams
le_testOR_1_0.java (9:452) : ruleName cannot be resolved > java.lang.RuntimeException: Unable to compile rules file: testOR_1.drl > > I must be doing something wrong here... ? > > thanks! > Marina > ___ > rules-users mailing list &

Re: [rules-users] No accumulator function found for identifier

2008-05-20 Thread Steven Williams
__ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au co

Re: [rules-users] BRMS Security in Websphere 6.1

2008-05-14 Thread Steven Williams
ponent.initMembers(Component.java:548) >at org.jboss.seam.Component.(Component.java:254) >at org.jboss.seam.Component.(Component.java:217) >at > org.jboss.seam.init.Initialization.addComponent(Initialization.java:949) > ... 19 more > > > This emai

Re: [rules-users] Re: Is this scenario suitable for using Drools?

2008-04-23 Thread Steven Williams
> to retrieve the values of P1, P2, etc from the database from within drools? > > Thanks! > > > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > > -- Ste

Re: [rules-users] Re: Is this scenario suitable for using Drools?

2008-04-23 Thread Steven Williams
2, ... are stored within a database. The number of Ps & > Ts are unknown but can be determined by querying the database, Would drools > be a good option to use to store the algorithms? If so, how could I be able > to retrieve the values of P1, P2, etc from the database from within drools? &

Re: [rules-users] Collection & Emptyness

2008-04-23 Thread Steven Williams
-Emptyness-tp16833060p16833060.html > Sent from the drools - user mailing list archive at Nabble.com. > > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > -- Steve

Re: [rules-users] Modifying fact object during rules execution

2008-04-13 Thread Steven Williams
rules-execution-tp16659936p16659936.html > Sent from the drools - user mailing list archive at Nabble.com. > > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > -- S

Re: [rules-users] Feature request

2008-04-09 Thread Steven Williams
the RuleAgent to work :) > > *___ > Brian Trezise > Staff Software Engineer > IntelliData, Inc > *3173 s. uravan way > aurora, colorado 80013 > T: 720.524.4864 > [EMAIL PROTECTED] > >

Re: [rules-users] Error on access variable in workingmemorylogger

2008-04-09 Thread Steven Williams
; > regards, > > V. > > > > > > > > -- > View this message in context: > http://www.nabble.com/Error-on-access-variable-in-workingmemorylogger-tp16581343p16581343.html > Sent from the drools - user mailing list a

Re: [rules-users] Can we do this with drools ?

2008-03-27 Thread Steven Williams
.org > > https://lists.jboss.org/mailman/listinfo/rules-users > > > > > > -- > View this message in context: > http://www.nabble.com/Can-we-do-this-with-drools---tp16244282p16266150.html > Sent from the drools - user mailing list archive at Nabble.com. > > __

Re: [rules-users] Missing mvel class after upgrade 4.0.4 => 4.0.5

2008-03-27 Thread Steven Williams
Builder.(PackageBuilder.java:86) > .. > > has anyone successfully switched to the latest version using the maven2 > poms? > thanks in advance, > c)hristian > ___ > rules-users mailing list > rules-users@lists.jboss.org >

Re: [rules-users] Re: Fire Rules in DT based on a rule in DT

2007-11-15 Thread Steven Williams
I'm not sure if it made its way into the doco. I don't have the code with me but will check for you what the value is. cheers Steve On Nov 16, 2007 1:21 PM, Arjun Dhar <[EMAIL PROTECTED]> wrote: > Steven Williams gmail.com> writes: > > > > > > >

Re: [rules-users] Fire Rules in DT based on a rule in DT

2007-11-14 Thread Steven Williams
client to write replicated DT's > for > each type of employee instead of 1 generic DT. > > Can anyone help? > > I've been begging for agenda Groups in decision tables but I guess you > guys are > tied up. So at a design level can you suggest a work around? >

Re: [rules-users] Drools web project in eclipse - Drools Library issue

2007-10-03 Thread Steven Williams
s, > Malika > > > -- > View this message in context: > http://www.nabble.com/Drools-web-project-in-eclipse---Drools-Library-issue-tf4564565.html#a13028564 > Sent from the drools - user mailing list archive at Nabble.com. > > ______

Re: [rules-users] custom defined types in setter and getters

2007-10-03 Thread Steven Williams
--- > Got a little couch potato? > Check out fun summer activities for > kids.<http://us.rd.yahoo.com/evt=48248/*http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz> > > _______ > rules-us

Re: [rules-users] How to stop a rule from firing?

2007-06-21 Thread Steven Williams
er mailing list archive at Nabble.com. ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898

Re: [rules-users] NoMuchMethod - But there is!

2007-06-20 Thread Steven Williams
ilman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au consulting | development | training | support our experience makes the difference ___

Re: [rules-users] FW: Newbie: using a spreadsheet

2007-05-01 Thread Steven Williams
go with this issue. Thanks! ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [

Re: [rules-users] Asserting new Facts in RHS...

2007-04-19 Thread Steven Williams
_________ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615

Re: [rules-users] Fetching Facts from WM...

2007-04-09 Thread Steven Williams
.nabble.com/Fetching-Facts-from-WM...-tf3550451.html#a9912199 Sent from the drools - user mailing list archive at Nabble.com. ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Willia

Re: [rules-users] Help : drools implementing

2007-04-05 Thread Steven Williams
@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au consulting | development | training | support our experience make

Re: [rules-users] RE: Rules with Lookup Tables...

2007-03-08 Thread Steven Williams
bble.com. ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.

[rules-users] Help - speaker needed

2007-03-06 Thread Steven Williams
(it doesn't have to be Drools/JBoss Rules) on a project and will be in Melbourne in the next few months and would be interested in speaking, please let me know as soon as possible. thanks a lot Steve -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 89

Re: [rules-users] Correlation of events

2007-02-28 Thread Steven Williams
retract($error); } End Thanks, Ashfaq ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Off

Re: [rules-users] [newbie] Using rules to enforce constraints?

2007-02-22 Thread Steven Williams
gt; rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object

Re: [rules-users] conditional insert of 'exist' or 'not' keywords in decision table s

2007-02-20 Thread Steven Williams
low unless changed to a new value)….. Smth along those lines J. Thanks, Steve. Vlad ------ *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Steven Williams *Sent:* 19 February 2007 18:54 *To:* Rules Users List *Subject:* Re: [rules-users] conditional insert of 'exist&

Re: [rules-users] conditional insert of 'exist' or 'not' keywords in decision table s

2007-02-19 Thread Steven Williams
tuations can be handled? (ie, when one needs several type of rules driven by the same data?) Thanks, Vlad ------ *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Steven Williams *Sent:* 17 February 2007 04:25 *To:* Rules Users List *Subject:* Re: [

Re: [rules-users] Handling ArrayList objects in rule conditions

2007-02-19 Thread Steven Williams
https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au consulting | development | training | support our experience makes the diff

Re: [rules-users] java.lang.NoSuchMethodError:org.eclipse.jdt.internal.compiler.CompilationResult.getProblems()[

2007-02-19 Thread Steven Williams
Can any of you solve my problem. ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax:

Re: [rules-users] Convert logic to DRL rules

2007-02-18 Thread Steven Williams
ou very much for your help. Really appreciate. > > > > I still got the same error, Unexpected token '|'. I did not see "|" in > > the document, only saw "||", which is supposed to be used with > > columns. > > > > Ye > > > &g

Re: [rules-users] Convert logic to DRL rules

2007-02-18 Thread Steven Williams
On 2/17/07, Bill Zhang <[EMAIL PROTECTED]> wrote: > Thank you Steve. But I got syntax error using the following. > > On 2/17/07, Steven Williams <[EMAIL PROTECTED]> wrote: > > In trunk I think you can use connective constraints: > > > > $a : Person(age &g

Re: [rules-users] Convert logic to DRL rules

2007-02-17 Thread Steven Williams
s-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au consulting | development |

Re: [rules-users] conditional insert of 'exist' or 'not' keywords in decision table s

2007-02-17 Thread Steven Williams
, any way to achieve this? Whether in current version (3.0.x) or the upcoming release (3.2) Thanks, Vlad** ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams

Re: [rules-users] How to generate rules from decision tables whereLHS has no field constraints

2007-02-15 Thread Steven Williams
org https://lists.jboss.org/mailman/listinfo/rules-users ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob

Re: [rules-users] Focus before assertion - for pattern matching

2007-02-14 Thread Steven Williams
; ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.

Re: [rules-users] Help Needed

2007-02-12 Thread Steven Williams
s-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au consulting | development | tr

Re: [rules-users] calls to 'Helper' classes in LHS - are they allowed?

2007-02-12 Thread Steven Williams
> rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > _______ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-user

Re: [rules-users] Parse bug in predicate constraints?

2007-02-08 Thread Steven Williams
or. In > trunk you can write: > > ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668

Re: [rules-users] java.lang.NoSuchMethodError

2007-02-07 Thread Steven Williams
Thank you very much Steve its working fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL <%5BEMAIL> PROTECTED] On Behalf Of Steven Williams Sent: Monday, January 29, 2007 10:20 AM To: Rules Users List Subject: Re: [rules-users] java.lang.NoSuchMethodError

Re: [rules-users] Adding DROOLS/JBoss Rules to classpath

2007-02-06 Thread Steven Williams
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm for more information. ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consul

Re: [rules-users] class loading issue with websphere 6.1

2007-01-30 Thread Steven Williams
/07, Vishal Joshi <[EMAIL PROTECTED]> wrote: Thanks Steve, What kind of problem have you seen (or you anticipate) with JANINO? cheers, Vishal Steven Williams-3 wrote: > > Hi Vishal, > > We found the JANINO compiler to be less than ideal (plus we wanted to use > Java 5

Re: [rules-users] java.lang.NoSuchMethodError

2007-01-28 Thread Steven Williams
.core_3.2.0.v_642.jar Still I have to use higher version Regards Shilpa -Original Message- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Steven Williams *Sent:* Monday, January 29, 2007 9:15 AM *To:* Rules Users List *Subject:* Re: [

Re: [rules-users] java.lang.NoSuchMethodError

2007-01-28 Thread Steven Williams
s.org https://lists.jboss.org/mailman/listinfo/rules-users -- Steven Williams Supervising Consultant Object Consulting Office: 8615 4500 Mob: 0439 898 668 Fax: 8615 4501 [EMAIL PROTECTED] www.objectconsulting.com.au consulting | development | training | support our experience makes the

Re: [rules-users] java.lang.NoSuchMethodError

2007-01-28 Thread Steven Williams
d any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/ru

Re: [rules-users] RE: Why not retracting?

2007-01-27 Thread Steven Williams
he "Cost" rule to also check the "Economic Level" the rules work as expected (i.e. "Costs" are only calculated using "Prices" with an "Economic Level" of 01/01/2007). I've tried using "salience" levels too (as commented in t

Re: [rules-users] Rules to detect states in an object graph?!?

2007-01-23 Thread Steven Williams
ng System* ( Trafford House (Int) 8 718 2239 ( Trafford House (Ext) +44 (0)1268 702239 * <***mailto:[EMAIL PROTECTED] <[EMAIL PROTECTED]>> ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/

Re: [rules-users] class loading issue with websphere 6.1

2007-01-21 Thread Steven Williams
n, but that did not help. I will consider upgrading to 6.1.0.3. in the meanwhile i have the solution to this, by using JANINO instead of ECLIPSE. cheers, Vishal Steven Williams-3 wrote: > > Hi Vishal, > > We had similar problems which we resolved by upgrading to WebSphere > 6.1.0.3

Re: [rules-users] class loading issue with websphere 6.1

2007-01-19 Thread Steven Williams
at >>>>> org.drools.compiler.PackageBuilder.addPackageFromDrl(Unknown >>>>> Source) >>>>> >>>>> >>>>> I have checked that class >>>>> org.eclipse.jdt.internal.compiler.CompilationResult is ava

Re: Fw: [rules-users] rules questions...

2007-01-07 Thread Steven Williams
takes the other 90% of the time" - Murphy's Law - Original Message From: Steven Williams <[EMAIL PROTECTED]> To: Joel G. Rivera-González <[EMAIL PROTECTED]> Cc: drools Sent: Sunday, January 7, 2007 8:50:06 PM Subject: Re: Fw: [rules-users] rules questions... t

Re: Fw: [rules-users] rules questions...

2007-01-07 Thread Steven Williams
List" Exception:1 errors while compiling unit "com/prtc/struts/rules/Rule_pos_baja_feature_menu_0.java" Joel G. Rivera-Gonzalez PRT "The first 90% of a project takes 90% of the time, the last 10% takes the other 90% of the time" - Murphy's Law - Original Mes

Re: Fw: [rules-users] rules questions...

2007-01-07 Thread Steven Williams
ot; - Murphy's Law - Original Message From: Steven Williams <[EMAIL PROTECTED]> To: Joel G. Rivera-González <[EMAIL PROTECTED]> Cc: rules-users@lists.jboss.org Sent: Sunday, January 7, 2007 3:53:34 AM Subject: Re: Fw: [rules-users] rules questions... Hi Joel, I think you

Re: Fw: [rules-users] rules questions...

2007-01-07 Thread Steven Williams
y's Law > > ___ > rules-users mailing list > rules-users@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/rules-users > > > -- Give me a lever long enough... Single-handed, I shall move the world! ___