Re: JESS: GUI and defquery

2008-08-25 Thread seyed hossein
throw a JessException with a different message when called after *next* returns * FALSE*, but doesn't. Bob Kirby At 10:14 AM 8/18/2008, Seyed Hossein wrote: Hi, I'm trying to write a program that asks a user his telephone number in GUI, then searches a database for that phone # using defquery

JESS: GUI and defquery

2008-08-24 Thread seyed hossein
Hi,I'm trying to write a program that asks a user his telephone number in GUI, then searches a database for that phone # using defquery, and outputs some results. But when I run it I get an error as below. Jess reported an error in routine QueryResult.get while executing (call ?result getInt ca)

JESS: searching an external database

2008-07-30 Thread seyed hossein
Hi, If we had a huge database, containing millions of data, in text, excel or spss, and wanted Jess to search through it find a desired data and perform rules on it, what would be the best method? Below is the way I first came up such that a program (here search.clp) would batch a database written

Re: JESS: Installing Fuzzy on Jess

2008-07-25 Thread seyed hossein
Thanks alot Mr. Orchard for your time, To run your example (in How to use the Fuzzy Extensions with Jess) I simply set the Jess main class under the Jess Application tab in Run Configurations to nrc.fuzzy.jess.FuzzyMain, but didn't know what to do with the Arguments tab so I left it blank and

Re: JESS: Installing Fuzzy on Jess

2008-07-24 Thread seyed hossein
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of seyed hossein Sent: Wednesday, July 16, 2008 1:28 PM To: jess-users@sandia.gov Subject: Re: JESS: Installing Fuzzy on Jess Thanks alot for the response Mr. Orchard, and sorry that if I'm bugging you and other jess users with my basic

Re: JESS: Installing Fuzzy on Jess

2008-07-16 Thread seyed hossein
Message- *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *seyed hossein *Sent:* Monday, July 07, 2008 12:52 PM *To:* jess-users@sandia.gov *Subject:* Re: JESS: Installing Fuzzy on Jess Sorry for the delay in answering but I'm away on vacation (for another week or so

Re: JESS: Installing Fuzzy on Jess

2008-07-07 Thread seyed hossein
Sorry for the delay in answering but I'm away on vacation (for another week or so) .. but the details are in the FuzzyJ User Guide ... see the chapter on FuzzyJess and the section How to use the Fuzzy Extensions with Jess This is a Java problem but you must use the FuzzyJess Console of

JESS: referring to an external database

2008-07-02 Thread seyed hossein
Hi, How is the procedure of recalling facts from other Jess classes (possibly from a Jess database) into a Jess class containing rules/functions? I tried the load-facts function, as shown bellow, but it seems not working. Thanks (deftemplate desk (slot location)) (load-facts c:/Documents and

Re: JESS: referring to an external database

2008-07-02 Thread seyed hossein
to your database) is the best, but you have to define facts in your database properly (with templates and facts...). On 7/2/08, Ernest Friedman-Hill [EMAIL PROTECTED] wrote: On Jul 2, 2008, at 12:52 PM, seyed hossein wrote: Hi, How is the procedure of recalling facts from other Jess classes

JESS: Installing Fuzzy on Jess

2008-06-30 Thread seyed hossein
Hi, I'm trying to install Fuzzy on Jess. Following the instructions on the Installation.html file in the FuzzyToolkit, after extracting the required files, I tried to make sure it was included in the CLASSPATH for my application, but didn't know much about CLASSPATH related material, so I simply

JESS: installing JessDE

2008-06-25 Thread seyed hossein
Hi It's been more than a month for me trying frustaingly to install the JessDE on Eclipse but they all failed. To install JessDE, I've downloaded both the Eclipse Classic 3.4 and the Eclipse IDE for Java EE Developers from the Eclipse website, then saved them both on my desktop, installed and ran

JESS: recalling a template slot

2008-06-13 Thread seyed hossein
Hi, Sorry that if my questions are too ...; I'm a beginner at Jess, but I've this question on my mind, and I can't figure it out neither from the Jess manual nor from the examples in the Jess folder (by the way, does anyone know a simpler example source), that if we want to recall a slot under

JESS: using the (read) function

2008-06-11 Thread seyed hossein
Hi, could anyone give me a simple example involving the (read) function. for instance if I want to get the first name and last name of the user as input and combine them as his full name and print it, how should I do it? thanks