Re: [rules-users] make the Guvnor interface into French

2012-04-06 Thread Michael Anstis
Hi Quentin, The droolsjbom-build-bootstrap\README.md is a good source (and kept up to date). The simplest (and preferred) approach might be to fork the github repository, apply your changes and submit a pull request. Please see here

Re: [rules-users] StatelessSession

2012-04-06 Thread Wolfgang Laun
This just can't be true. An object's class is impregnated when the object is created, and it can't be undone by passing an object around in a List. -W On 6 April 2012 16:26, Hassan wrote: > Hi laune > > thank you for having responded... that's what I did but the problem is that > my objects ar

Re: [rules-users] StatelessSession

2012-04-06 Thread Hassan
Hi laune thank you for having responded... that's what I did but the problem is that my objects are regarded as being of type Object which causes unpredictable behavior (some rules are not activated). - Youssef AZBAKH. -- View this message in context: http://drools.46999.n3.nabble.com/Statel

Re: [rules-users] maven drools compiler (plugin)

2012-04-06 Thread Sean Su
Ansgar, I tried the plugin yesterday before sending the email to the list but did not succeed. The problem, I believe, is the repository specification inside my pom. Could you send it over so that I can be sure? Thanks Sean On Fri, Apr 6, 2012 at 2:32 AM, Geoffrey De Smet wrote: > ** > Hey Ansg

Re: [rules-users] KnowledgeAgent Changeset problems

2012-04-06 Thread albertorugnone
you are right, I made this example only to have a self contained test (it should be better I know :-p). The problem anyway is still there -- View this message in context: http://drools.46999.n3.nabble.com/KnowledgeAgent-Changeset-problems-tp3787165p3890180.html Sent from the Drools: User forum m

Re: [rules-users] StatelessSession

2012-04-06 Thread Wolfgang Laun
Create a java.util.List list containing your objects and call StatelessRuleSession.execute( list ) See the Javadoc of StatelessRuleSession. -W On 06/04/2012, Hassan wrote: > hello everyone > > actually I'm working with stateless session, I know we can pass a list of > objects in the session but I

Re: [rules-users] [Drools Planner] Proof-of-Concept Stock-planning System

2012-04-06 Thread Geoffrey De Smet
I just realized that the graph only prints out values (the soft score) of the hard score = 0. Since you don't reach feasibility early on, the graph will be zero. Try to tmp hack it to get the graph by disabling soft constraints and putting the hard constraints values in the soft score. With kind

Re: [rules-users] [Drools Planner] Proof-of-Concept Stock-planning System

2012-04-06 Thread Geoffrey De Smet
32 hours, that is very long, especially if you're talking about feasibility. Feasibility much be attained within seconds or maybe 2 minutes. So either your problem is very, very constrained (unlikely) or there is much room for optimization. Run the Benchmarker and enable the statistic BEST_SOLUTI

Re: [rules-users] [Drools Planner] Proof-of-Concept Stock-planning System

2012-04-06 Thread drools
Thank you, Geoffrey!   This is the answer I was hoping for and it confirms my understanding of this problem.   Indeed it looks like it will be a standard implementation (since it is (A) and (C)).   The reason I was willing to ask the community is that current (non-optimizied prototype solution)

[rules-users] StatelessSession

2012-04-06 Thread Hassan
hello everyone actually I'm working with stateless session, I know we can pass a list of objects in the session but I do not know how to pass objects of different types, I do not even know if that's possible. I will be grateful :) - Youssef AZBAKH. -- View this message in context: http://dr

[rules-users] UnSubscribe:my mail.

2012-04-06 Thread Manohar Kokkula
Hello, Please unsubscribe my mail: manohar.kokk...@tcs.com. Thanks in advance. Manohar Kokkula Mailto: manohar.kokk...@tcs.com =-=-= Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you

Re: [rules-users] make the Guvnor interface into French

2012-04-06 Thread Qchevalier
Hello, I got your last file (Constants_fr_FR.properties) Vincent, but I found a lot of errors. So here is my corrected file : http://drools.46999.n3.nabble.com/file/n3889908/Constants_fr_FR.properties Constants_fr_FR.properties I didn't manage to integrate this file into the guvnor war file. I

[rules-users] Suscribe : my email

2012-04-06 Thread quentin chevalier
Hello, There is my email : quentin.chevalier.alt...@gmail.com Thx & regards ___ rules-users mailing list rules-users@lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-users

Re: [rules-users] KnowledgeAgent Changeset problems

2012-04-06 Thread albertorugnone
This is what I have 11:36:48,888 [it.ipiu.drools.KnowledgeAgent.TestKnowledgeAgent] WARN TestKnowledgeAgent : START [2012-04-06 11:36:50,298:info] KnowledgeAgent applying ChangeSet [2012-04-06 11:36:50,316:debug] KnowledgeAgent subscribing to directory=[UrlResource path='file:/Z:/EXP/drools-test/

[rules-users] debug

2012-04-06 Thread grandjean
Hi I am a newbie and i would like to use debugging mode under eclipse indigo sr2 with drools 5.3. So, I created a very simple drools Helloworld project. I added two breakpoints, one in the 'then' section of the 'goodbye' rule and the other one in the line where I call fireAllRules(); I selected

Re: [rules-users] maven drools compiler (plugin)

2012-04-06 Thread Wolfgang Laun
I have two comments in connection with this Maven plugin: * The documentation only mentions .drl as input. I can see that users will ask for (at leasT) .dsl/.dslr and .xls. * Type .dkm is introduced, but isn't this the same as ResourceType.PKG, for which the file type .pkg could have been used. O