home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / sdu / config.dfm < prev    next >
Text File  |  1995-08-03  |  8KB  |  137 lines

  1. ; ****************************************************************************
  2. ; *      Copyright (c) IBM Corporation 1993,1995 - All Rights Reserved       *
  3. ; *                                                                          *
  4. ; * DFM/2 (program no. 5648-02012)                                           *
  5. ; * Version: 1.0                                                             *
  6. ; * Release: 1.0                                                             *
  7. ; *                                                                          *
  8. ; ****************************************************************************
  9. ; *                                                                          *
  10. ; *             IBM Distributed FileManager (DFM/2) for OS/2                 *
  11. ; *             ============================================                 *
  12. ; *                                                                          *
  13. ; *                     SAMPLE CONFIGURATION FILE                            *
  14. ; *                                                                          *
  15. ; *                                                                          *
  16. ; ****************************************************************************
  17. ; * CHANGE ACTIVITY                                                          *
  18. ; * ------------------------------------------------------------------------ *
  19. ; *                           930402 Mueller  : Initial Release              *
  20. ; *                           950803 W.Murphy : Release 1.011                *
  21. ; ****************************************************************************
  22. ; ****************************************************************************
  23. ; * Delete or comment-out the lines not needed (i.e. add a ';' in front).    *
  24. ; * Un-comment lines you want activated (i.e. delete the ';' in front).      *
  25. ; * Modify the values as required.                                           *
  26. ; ****************************************************************************
  27.  
  28. ; ****************************************************************************
  29. ; * Define all DFM/2 target systems on which you want to access file data.   *
  30. ; ****************************************************************************
  31. ; The name specified in the 'remote_lu' parameter of the DFM_TARGET statement
  32. ; connects the definition to the 'partner_lu_alias' specification of a
  33. ; DEFINE_PARTNER_LU statement in the node definitions file for the
  34. ; OS/2 Communications Manager (the configuration.NDF file normally
  35. ; residing in c:\cmlib\appn).
  36.  
  37. ; Definition of an AS/400 system as target:
  38. ;      DFM_TARGET (
  39. ;            remote_lu(OS400M1)
  40. ;            description(AS/400 System M1)
  41. ;            conversation(HOLD)
  42. ;            max_send_limit(32767)
  43. ;            )
  44.  
  45. ; Definition of an MVS system as target:
  46. ;      DFM_TARGET (
  47. ;            remote_lu(MVS)
  48. ;            description(MVS System)
  49. ;            conversation(HOLD)
  50. ;            max_send_limit(4096)
  51. ;            )
  52.  
  53. ; Definition of a CICS system as target:
  54. ;      DFM_TARGET (
  55. ;            remote_lu(DDMCICS1)
  56. ;            description(CICS/DDM MVS System DDMCICS1)
  57. ;            conversation(HOLD)
  58. ;            max_send_limit(4096)
  59. ;            )
  60.  
  61. ; Definition of a 4680 Store System as target:
  62. ;      DFM_TARGET (
  63. ;            remote_lu(OS4680)
  64. ;            description(4680 Store System)
  65. ;            conversation(HOLD)
  66. ;            max_send_limit(4096)
  67. ;            )
  68.  
  69. ; ****************************************************************************
  70. ; * Define the local LU alias as defined for the OS/2 Communications Mgr.    *
  71. ; ****************************************************************************
  72.        LOCAL_LU (APPCLU)
  73.  
  74. ; ****************************************************************************
  75. ; * Define the Mode Name                                                     *
  76. ; ****************************************************************************
  77.        MODE_NAME (QPCSUPP)
  78.  
  79. ; ****************************************************************************
  80. ; * Define the Default DFM Target System                                     *
  81. ; ****************************************************************************
  82. ;       DEFAULT_DFM_TARGET(OS400M1)
  83.  
  84. ; ****************************************************************************
  85. ; * Define the default CCSID (Coded-Character-Set-Id, up to 5 decimal digits)*
  86. ; * for all accessed targets:                                                *
  87. ; * Some examples for CCSIDs (code pages)                                    *
  88. ; * (CEPC means EBCDIC format, PC Data means ASCII format):                  *
  89. ; * 037 = CEPC: USA, Canada (ESA), Netherlands, Portugal, Brazil, Australia  *
  90. ; * 273 = CEPC: Austria, Germany                                             *
  91. ; * 277 = CEPC: Denmark, Norway                                              *
  92. ; * 278 = CEPC: Finland, Sweden                                              *
  93. ; * 280 = CEPC: Italy                                                        *
  94. ; * 284 = CEPC: Spain, Latin America (Spanish)                               *
  95. ; * 285 = CEPC: United Kingdom                                               *
  96. ; * 297 = CEPC: France                                                       *
  97. ; * 500 = CEPC: International Latin-1, B, CH, Can(AS/400)                    *
  98. ; *             (default if no specification given)                          *
  99. ; * 437 = PC Data: USA                                                       *
  100. ; * 850 = PC Data: Latin Alphabet Number 1, Latin-1 Countries                *
  101. ; ****************************************************************************
  102.        DEFAULT_CCSID(00500)
  103.  
  104. ; ****************************************************************************
  105. ; * For each file where data conversion is required insert a                 *
  106. ; * FILE_DESCRIPTOR_MAP statement.                                           *
  107. ; ****************************************************************************
  108. ;       FILE_DESCRIPTOR_MAP(
  109. ;              REMOTE_LU(OS400M1)
  110. ;              TARGET_FILENAME(SAMPLE)
  111. ;              BASE_DDF(\SAMPLE\SAMPBASE.DDF)
  112. ;              VIEW_DDF(\SAMPLE\SAMPVIEW.DDF)
  113. ;              )
  114.  
  115. ; ****************************************************************************
  116. ; * Define the shared memory size to be available for DFM/2 tracing.         *
  117. ; * Trace buffer memory to be specified in kilobytes:                        *
  118. ; *  Minimum value:   10 KB                                                  *
  119. ; *  Maximum value: 1000 KB                                                  *
  120. ; ****************************************************************************
  121. ;       TRACE_BUFFER(64)
  122.  
  123. ; ****************************************************************************
  124. ; * Define space available for DFM/2 caching.                                *
  125. ; * The size (maximum space used) is specified in kilobytes,                 *
  126. ; * default value is 2000 KB.                                                *
  127. ; * The default directory is d:\cache                                        *
  128. ; * Make sure the directory specified exists and does not contain any files  *
  129. ; * you want to keep, as DFM/2 may delete all files in that directory.       *
  130. ; ****************************************************************************
  131. ;       DFM_CACHE (
  132. ;             cache_disk_size(1000)
  133. ;             cache_directory(d:\dfmcache)
  134. ;             )
  135.  
  136. ; ***** end of file **********************************************************
  137.