Preparing a Windows NT Java client environment for OLT

  1. Create a text file with the following entries:

    This file defines your Client Style and should be saved with a file extension of .prop, for example java2.prop. Remember this file name and the path to the file, you will need this information in the next step.

  2. Issue the following command from command line prompt:

    for Java 1.1.x:

    java_g -debug -nojit -mx256m -ms30m -oss75m
    -Dcom.ibm.CORBA.requestTimeout=0
    -Dcom.ibm.CORBA.EnableApplicationOLT=true
    -Dcom.ibm.CORBA.OLTApplicationHost=<OLT_Server_Host>
    -Dcom.ibm.CORBA.OLTApplicationPort=<OLT_Server_Port>
    -Dcom.ibm.CORBA.BoostrapHost=<BootstrapHostname>
    -Dcom.ibm.CORBA.ClientStyleImageURL=file:/<path_to_properties_file>
    -Dcom.ibm.CORBA.BootstrapPort=900
    -DOLTClient=true
    -classpath
    <path\YourAppJarFile>;<path\somojor.zip>;<path\dertrjrt.jar>;%CLASSPATH%
    yourapp

    for the Java 2 platform:

    java -Xdebug -Djava.compiler=NONE -Xmx75m -Xms30m -Xoss75m
    -Dcom.ibm.CORBA.requestTimeout=0
    -Dcom.ibm.CORBA.EnableApplicationOLT=true
    -Dcom.ibm.CORBA.OLTApplicationHost=<OLT_Server_Host>
    -Dcom.ibm.CORBA.OLTApplicationPort=<OLT_Server_Port>
    -Dcom.ibm.CORBA.BootstrapHost=<BootstrapHostname>
    -Dcom.ibm.CORBA.ClientStyleImageURL=file:/<path_to_properties_file>
    -Dcom.ibm.CORBA.BootstrapPort=900
    -DOLTClient=true
    -Xbootclasspath:<path\YourAppJarFile>;<path\somojor.zip>;
    <path\dertrjrt.jar>;%JAVA_HOME%\lib\tools.jar;
    %JAVA_HOME%\jre\lib\rt.jar;%CLASSPATH%
    yourapp

    Where: