Re: JESS: calling an integer or a string

2004-06-02 Thread kimos
thanks alot my project is almost done using Jess and ill post the link to it when im done. thanks again M. Ismail (KiMoS) Citeren [EMAIL PROTECTED]: I think M.Ismail wrote: is Jess lower higher case sensitive ? is there diffrent between assert Bla and assert bla ?

Re: JESS: calling an integer or a string

2004-06-01 Thread M . Ismail
L PROTECTED] Sent: Thursday, May 27, 2004 1:40 PM Subject: Re: JESS: calling an integer or a string You can not mix java and jess.Assuming that getstring() is a method which returns String in your java class, then proper code would be:r.executeCommand("(assert (" + getstri

RE: JESS: calling an integer or a string

2004-05-27 Thread Jason Morris
Hi Kimos: I'm learning Jess, too! One thing that I do to avoid errors with (Rete) executeCommmand() is to build a command string first. This way I can do a sanity check on its components before using it in executeCommand(). A StringBuffer works nicely... for example: Rete engine = new Rete();

Re: JESS: calling an integer or a string

2004-05-27 Thread Dusan Sormaz
You can not mix java and jess. Assuming that getstring() is a method which returns String in your java class, then proper code would be: r.executeCommand((assert ( + getstring() + ))); Regards, Dusan Sormaz At 11:31 AM 5/27/2004 +0200, you wrote: hi there, first i want to thanks Ernest