BEA Logo BEA Tuxedo Release 8.0

  BEA Home  |  Events  |  Solutions  |  Partners  |  Products  |  Services  |  Download  |  Developer Center  |  WebSUPPORT

 

   Tuxedo Documentation   |   Tutorials for Developing BEA Tuxedo ATMI Applications   |   Local Topics   |   Previous Topic   |   Next Topic   |   Contents

 


Step 1: How to Copy the CSIMPAPP Files

  1. Make a directory for CSIMPAPP and change the directory to it:
    mkdir CSIMPDIR
    cd CSIMPDIR

Note: This step is suggested so you can see the CSIMPAPP files you have at the start and the additional files you create along the way. Use the standard shell (/bin/sh) or the Korn shell; do not use csh.

  1. Set and export environment variables:
    TUXDIR=<pathname of the BEA Tuxedo System root directory>
    APPDIR=<pathname of your present working directory>
    TUXCONFIG=$APPDIR/TUXCONFIG
    COBDIR=<pathname of the COBOL compiler directory>
    COBCPY=$TUXDIR/cobinclude
    COBOPT="-C ANS85 -C ALIGN=8 -C NOIBMCOMP -C TRUNC=ANSI -C OSEXT=cbl"
    CFLAGS="-I$TUXDIR/include"
    PATH=$TUXDIR/bin:$APPDIR: $PATH
    LD_LIBRARY_PATH=$COBDIR/coblib:${LD_LIBRARY_PATH}
    export TUXDIR APPDIR TUXCONFIG UBBCONFIG COBDIR COBCPY
    export COBOPT CFLAGS PATH LD_LIBRARY_PATH

    You need TUXDIR and PATH to be able to access files in the BEA Tuxedo directory structure and to execute BEA Tuxedo commands:

  2. Copy the CSIMPAPP files:
    cp TUXDIR/samples/atmi/CSIMPAPP/* .

    Note: Later, you will edit some files and make them executable, so we recommend using copies of the files rather than the originals delivered with the software.

  3. List the files:
    $ ls
    CSIMPCL.cbl
    CSIMPSRV.cbl
    README
    TPSVRINIT.cbl
    UBBCSIMPLE
    WUBBCSIMPLE
    envfile
    ws
    $

    The files that make up the application are:

 

back to top previous page next page