Process Engineer Toolkit > System Requirements
Toolkit: System requirementsTopicsJava appletsThe system requirements for the java applets are a browser that supports JDK 1.0.2 or later. Java applicationsJava Runtime EnvironmentThe system requirements for the java applications are a Java Runtime Environment, JRE, that supports JDK 1.1 or later. If you are uncertain of the version of the installed JRE, you can check the version number by typing: java -version which gives a typical output of: java version "1.1.3" Executing a Java applicationBefore you can execute a java application the environment variables CLASSPATH and PATH must be set. Read the java documentation for details about the environment variables. The following is an example, of how to set the two environment variables in Unix: $ setenv CLASSPATH /usr/apps/COTS/jdk1.1.4/bin $ setenv PATH $CLASSPATH":"$PATH To execute a java application type: [path to java]java [-classpath RUP.jar][ruptools.myclass.class][argument1][argument...] Below each part of the line above is described. Inside the "[ ]" some example syntax is described. The example shall be replaced with the real values.
Customize the available memoryThe SearchEngine is a memory intensive application, so the more virtual memory
your system has, the faster the compilation speeds, and the larger the database
sizes that can be compiled. If your system has more than 16MB of memory, you may wish to adjust the initial and maximum Java heap sizes, using the -ms and -mx options, as described in the Java utility documentation, for example: java -ms24m -mx64m ... |
|
Rational Unified Process |