Re: [rules-users] pattern

2007-10-11 Thread Karl.Trout
Karl Trout On Oct 10, 2007, at 5:44 AM, "DELBART Vincent" <[EMAIL PROTECTED]> wrote: Hi, I think you have to use "Test\\s+". I don't think it's a DROOLS problem (maybe jdk). V. -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] ] De la part de Markus Helbi

Re: [rules-users] activationCancelled() not being executed?

2007-10-11 Thread Fermion
Hi, as you might have noticed, I'm trying to avoid supplying a self-contained test package. The problem with that is, that my application code has grown quite a bit and it will not be very easy to extract the code. Nevertheless I will provide such a test package, should I not succeed in finding

Re: [rules-users] activation-group not canceling other rule members

2007-10-11 Thread Mark Proctor
Karl Trout wrote: All, Care to give more details? ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users ___ rules-users mailing list rules-u

Re: [rules-users] activationCancelled() not being executed?

2007-10-11 Thread Edson Tirelli
It is really difficult to answer that since your understanding seems correct. Is it possible for you to provide a self contained test showing the problem? []s Edson 2007/10/11, Fermion <[EMAIL PROTECTED]>: > > > It's been a while since I had time to investigate this problem. > > I follow

[rules-users] activation-group not canceling other rule members

2007-10-11 Thread Karl Trout
All, ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] activationCancelled() not being executed?

2007-10-11 Thread Fermion
It's been a while since I had time to investigate this problem. I followed your advice and hooked up the DebugAgendaEventListener to my workingMemory instance. This clearly shows, that my activations are created but never canceled. So at least it is consistent with what I'm observing in my appli

Re: [rules-users] 4.0.2 : Class EventManager

2007-10-11 Thread vdelbart
thanks, for my information, what's the difference between RuleBaseEventManager & WorkingMemoryEventManager ? thks, V. Mark Proctor wrote: > > vdelbart wrote: >> Hi, >> >> I didn't find the class org.drools.EventManager in 4.0.2 where is it ? >> > http://downloads.jboss.com/drools/docs/

Re: [rules-users] 4.0.2 : Class EventManager

2007-10-11 Thread Mark Proctor
vdelbart wrote: Hi, I didn't find the class org.drools.EventManager in 4.0.2 where is it ? http://downloads.jboss.com/drools/docs/4.0.2.15666.GA/apidocs/org/drools/RuleBaseEventManager.html http://downloads.jboss.com/drools/docs/4.0.2.15666.GA/apidocs/org/drools/WorkingMemoryEventManager.htm

[rules-users] drools jbrms- forall condition!

2007-10-11 Thread vamshidhar reddy chitti
hello, is there any replace condition for 'forall' in drools jbrms web ui tnx n advance vamshidhar - Yahoo! Clever: Stellen Sie Fragen und finden Sie Antworten. Teilen Sie Ihr Wissen. ___ rules-users mailing list

[rules-users] 4.0.2 : Class EventManager

2007-10-11 Thread vdelbart
Hi, I didn't find the class org.drools.EventManager in 4.0.2 where is it ? And I find nothing about this in the documentation... thanks, V. -- View this message in context: http://www.nabble.com/4.0.2-%3A-Class-EventManager-tf4607170.html#a13155535 Sent from the drools - user mailing list ar

Re: [rules-users] Problem with WorkingMemoryFileLogger and 4.0.2

2007-10-11 Thread vdelbart
I found my problem, no link with the 4.0.2 version. I found a 4.0.1 jar in my project. V. vdelbart wrote: > > Hi, > > I don't know why but with the 4.0.2 version I have this error : > > Exception in thread "main" java.lang.NoSuchMethodError: > org.drools.audit.WorkingMemoryFileLogger.(Lorg/

Re: [rules-users] Basic questions about rule deployment

2007-10-11 Thread Fermion
Thanks for the warning! I tested this with a path that contains spaces. For some reason I don't have any problems with the corresponding URLs. Nevertheless I tried to convert those URLs into URIs and THEN I see the problem of the spaces not being accepted. As the URLClassLoader takes URLs, this

[rules-users] Problem with DSL and 4.0.2

2007-10-11 Thread vdelbart
Hi, I have a problem with my DSL and the 4.0.2 version : this sentence doesn't work in 4.0.2 (work in 4.0.1) in Eclipse Editor : [condition][]there is at least {number} {object}=ArrayList( size >= {number}) from collect( {object}() ) log : !ENTRY org.eclipse.ui 4 0 2007-10-11 14:29:29.052 !MES

[rules-users] Problem with WorkingMemoryFileLogger and 4.0.2

2007-10-11 Thread vdelbart
Hi, I don't know why but with the 4.0.2 version I have this error : Exception in thread "main" java.lang.NoSuchMethodError: org.drools.audit.WorkingMemoryFileLogger.(Lorg/drools/WorkingMemoryEventManager;)V at execution.ExecReglesTest2.main(ExecReglesTest2.java:73) with this class : pu

Re: [rules-users] Basic questions about rule deployment

2007-10-11 Thread Godmar Back
Replacing a space with %20 has nothing to do with base 64 encoding. It's called percent-encoding (in RFC 3986) and it's required for valid URI. You may be confusing terminology here, but your point of testing with space-containing filenames is well taken. - Godmar On 10/11/07, Hehl, Thomas <[EM

RE: [rules-users] Basic questions about rule deployment

2007-10-11 Thread Hehl, Thomas
Just a note about URLs. URLs will automatically do base 64 encoding, which primarily means that all spaces are replaced with %20%. If you are using a URL to represent a file, make sure you test it with a file that has spaces somewhere in the path. I just learned this the hard way. You may need to

[rules-users] call function from one rule file to another file

2007-10-11 Thread marimuthu.balasubramanian
Hi all I am using Drools 4.0. I have written a function in a rule file and i want to use that function in another rule file. Please tell me what should i do for this. Regards Marimuthu The information contained in this electronic message and any attachments to this message are intended f

Re: [rules-users] Basic questions about rule deployment

2007-10-11 Thread Fermion
Thank you very much! I followed your advice and created URLs for my .drl and .dsl files. Then I created a new URLClassLoader instance with these two URLs. Finally I assigned this class loader to my packager builder using: myPackageBuilder.getPackageBuilderConfiguration().setClassLoader(myURLClas

[rules-users] about function in rule file

2007-10-11 Thread prateek.katiyar
Hi all I am using Drools 4.0. I have written a function in a rule file and i want to use that function in another rule file. Please tell me what should i do for this. Thanks. With Regards Prateek The information contained in this electronic message and any attachments to this message a