home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxapfd.zip / rxappcfd.doc < prev    next >
Text File  |  1993-11-03  |  2KB  |  43 lines

  1. Rexx APPC (Full-Duplex) Interface
  2.  
  3. The RXAPFD.ZIP package contains:
  4.  
  5.  
  6. RXAPPCFD.DLL  -  Rexx APPC Interface
  7. RXAPPCFD.INF  -  User's Guide
  8. EXE2REXX.EXE  -  Pass through code which calls a Rexx program of the same name.
  9.                  This allows you to use implicit inbound support for Rexx programs.
  10.                  For instance, to have the Rexx program "TP2.CMD" started
  11.                  when an inbound allocate for him arrives (without having to
  12.                  define the TP in the .NDF), rename EXE2REXX.EXE as TP2.EXE
  13.                  and place it in your PATH:
  14.  
  15.                     rename EXE2REXX.EXE tp2.exe
  16.  
  17.                  Then attach manager will find the program TP2.EXE which will
  18.                  in turn call the Rexx program TP2.CMD.
  19.  
  20.                  EXE2REXX.EXE passes its args 1-20 to the Rexx program as
  21.                  args 1-20.
  22.  
  23. ************************   SAMPLES    ********************************
  24.  
  25. TP1.CMD       - Starts a conversation with TP2.CMD
  26. TP2.CMD       - Receives a conversation from TP1.CMD
  27.  
  28.  
  29. *********************  REMOTE COMMAND SAMPLE  ************************
  30. Required software:
  31.         RXU.ZIP      (from Compuserve OS2DF1, Rexx/Other Library)
  32.         ACSU.ZIP     (from Compuserve OS2DF2, Comm. Mgr. Library)
  33.         PMPRINTF.EXE (from various IBM sources)
  34.  
  35.  
  36. RC1.CMD       - Starts a conversation with RC3.CMD at an OS/2 LU.
  37.                 (calls RC2.CMD on second thread to handle feedback from
  38.                  RC4.CMD)
  39. RC3.CMD       - Receives conversation allocation from RC1.CMD and processes
  40.                 commands sent to it.
  41.                 (calls RC4.CMD on second thread to send results back to
  42.                  RC2.CMD)
  43.