+

Search Tips   |   Advanced Search

Run a Java thin client application on a client machine

To run a Java thin client application on a machine with Application Client for WebSphere Application Server installed, use the setup Client command then start the application.

Before performing this task, install the Java thin application client from the Application Client for WAS installation.


Tasks

  1. Set up the client application environment. Run the setupClient command.

    (Windows)

    app_client_root\AppClient\bin\setupClient.bat
    

    (AIX) (Linux) (HPUX) (Solaris) (ZOS)

    app_client_root/AppClient/bin/setupClient.sh
    

    (iSeries) Use the setupClient script.

    1. Start the Qshell environment. On the CL command line, run the STRQSH command.

    2. On the Qshell command line, using the dot (.) operator:
      . app_client_root/bin/setupClient [-profileName profileName]
      

  2. Run a Java command to invoke the client application.

    (Windows)

    "%JAVA_HOME%\bin\java" %WAS_LOGGING% -Djava.security.auth.login.config="%WAS_HOME%\properties\wsjaas_client.conf"
    -classpath "%WAS_CLASSPATH%;<list_of_your_application_jars_and_classes>" 
    -Djava.ext.dirs="%JAVA_JRE%\lib\ext;%WAS_EXT_DIRS%;%WAS_HOME%\plugins;%WAS_HOME%\lib\WMQ\java\lib" 
    -Djava.naming.provider.url=iiop://<your_application_server_machine_name> 
    -Djava.naming.factory.initial=com.ibm.websphere.naming.WsnInitialContextFactory 
    "%SERVER_ROOT%" "%CLIENTSAS%" "%CLIENTSSL%" <fully_qualified_class_name_to_run>
    
    For information about IIOP and corbaloc URLs, see Developing applications that use JNDI.

    (AIX) (Linux) (HPUX) (Solaris) (ZOS)

    $JAVA_HOME/bin/java $WAS_LOGGING 
    -classpath "$WAS_CLASSPATH: <list_of_your_application_jars_and_classes>" 
    -Djava.ext.dirs=$JAVA_JRE/lib/ext:$WAS_EXT_DIRS:$WAS_HOME/plugins:$WAS_HOME/lib/WMQ/java/lib"
    -Djava.naming.provider.url=iiop://<your_application_server_machine_name> 
    -Djava.naming.factory.initial=com.ibm.websphere.naming.WsnInitialContextFactory 
    $SERVER_ROOT $CLIENTSAS $CLIENTSSL <fully_qualified_class_name_to_run>
    

    (iSeries) Run the following command on the Qshell command line:

    java ${JAVA_FLAGS_EXT} -classpath "$WAS_CLASSPATH:jars_and_classes" -Djava.naming.provider.url=URL class_name app_parm
    


Related:

  • Java thin client
  • Running a Java thin client application on a server machine
  • Developing a Java thin client application
  • Developing applications that use JNDI
  • Application Client installation information