How can I run my system as a standalone system? 1. To run locally in a browser, you need at a minimum these 4 files: Your_system.html Copy these 4 files to the directory you wish to run from. To run the system, open the .html file in your favorite browser. You can either double click on the .html file, or create a shortcut for the .html file by right mouse clicking on it and selecting "Create shortcut". If your system requires additional files for images, links, etc., make sure to also move these files to the same directory. 2. To run it as a Java application, you must have the Java Runtime environment installed on your computer and then type this in a DOS-Prompt or Console window: java -cp ExsysCorvid.jar Corvid.Runtime "C:\path\ " your_expert_system.cvR where path is the path to the .cvR file, and your_expert_system.cvR is the name of your expert system's .cvR file. Notice that there is a space before the closing quote in "C:\path\ " and after the closing quote. If you must specify a path to Java, then your command line should be this: C:\path\java.exe -cp ExsysCorvid.jar Corvid.Runtime "C:\path\ " your_expert_system.cvR If you do not have the Java Runtime Environment (JRE), you can download it from Sun Systems at: http://java.sun.com/en/download/index.jsp |