4.2.1 Running the Application from an ATMI Client

In this scenario, the toupclt client performs a tpcall to the CICS/ESA host server. The server converts the text string you enter from lower-case to upper-case letters. The client may be run in transactional or non-transactional mode. The CICS/ESA server may be run as a DTP or DPL program

For example, enter the following command:

toupclt -s 0 -t DTP “hello world”

In this command, the arguments and options are defined in the following way:

-s (0|2)
Application Sync-Level.
0 = none (default)
2 = Transactional.
-t (DPL|DTP)
Remote Server Program.
DPL = Distributed Program Link (default)
DTP = Distributed Transaction Program
-h
Help
“ “
Lowercase text string of up to 1915 characters.

If the ATMI client successfully executes the command, it displays the text string in upper-case letters, for example:

“HELLO WORLD”