home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv7.zip / vac22os2 / ibmcobol / macros / mvsinfo.dat < prev    next >
Text File  |  1998-03-13  |  41KB  |  634 lines

  1. ***********************************************************************
  2. *                                                                     *
  3. *                     ---- MVSINFO.DAT File ----                      *
  4. *                                                                     *
  5. * This file, named MVSINFO.DAT, is used to obtain information that    *
  6. * is required by any of the following components:                     *
  7. *                                                                     *
  8. * - IBM VisualAge COBOL                                               *
  9. *                                                                     *
  10. *   -- Remote Edit/Compile/Debug                                      *
  11. *                                                                     *
  12. * - IBM VisualAge PL/I                                                *
  13. *                                                                     *
  14. *   -- Remote Edit/Compile/Debug                                      *
  15. *                                                                     *
  16. * This file is located in the MACROS directory under the main         *
  17. * product directory.                                                  *
  18. *                                                                     *
  19. * This file must be modified to reflect your own individual           *
  20. * requirements.                                                       *
  21. *                                                                     *
  22. * Note that any line in this file that starts with an asterisk (*)    *
  23. * will be treated as a comment.  Blank lines will also be ignored.    *
  24. * Data entered in this file may be in upper or lower case.  The data  *
  25. * will be converted to upper case when it is processed.               *
  26. *                                                                     *
  27. ***********************************************************************
  28.  
  29. ***********************************************************************
  30. *                                                                     *
  31. * System specification:                                               *
  32. *                                                                     *
  33. * The following line, which starts with "system", specifies the name  *
  34. * of your MVS system as known to TCP/IP.  If you are using the SdU    *
  35. * file system then the value is ignored (but it must have some        *
  36. * value).                                                             *
  37. *                                                                     *
  38. * This line is required.                                              *
  39. *                                                                     *
  40. ***********************************************************************
  41.  
  42. system mymvs.mycompany.com
  43.  
  44. ***********************************************************************
  45. *                                                                     *
  46. * Workstation specification:                                          *
  47. *                                                                     *
  48. * The following line, which starts with "worksys", specifies the name *
  49. * of your workstation system as known to TCP/IP.                      *
  50. *                                                                     *
  51. * This line is required, but reserved for future use, therefore       *
  52. * you should leave this line asis.                                    *
  53. *                                                                     *
  54. ***********************************************************************
  55.  
  56. worksys reserved.for.future.use
  57.  
  58. ***********************************************************************
  59. *                                                                     *
  60. * UserID specification:                                               *
  61. *                                                                     *
  62. * The following line, which starts with "userid", specifies your      *
  63. * TSO userID on the above MVS system.                                 *
  64. *                                                                     *
  65. * This line is required.                                              *
  66. *                                                                     *
  67. ***********************************************************************
  68.  
  69. userid myuser
  70.  
  71. ***********************************************************************
  72. *                                                                     *
  73. * Password specification:                                             *
  74. *                                                                     *
  75. * The following line, which starts with "pwd", specifies the password *
  76. * (in encrypted form) for your TSO userID.  The current encryption    *
  77. * alogorithm is as follows:                                           *
  78. *                                                                     *
  79. * - the letters A through Y map to the next letter in the alphabet    *
  80. *   (e.g. L maps to M)                                                *
  81. * - the letter Z maps to the number 0                                 *
  82. * - the numbers 0 through 8 map to the next higher number (e.g        *
  83. *   7 maps to 8)                                                      *
  84. * - the number 9 maps to the letter A                                 *
  85. * - all other characters stay asis                                    *
  86. *                                                                     *
  87. * An easy way to look at the encryption is to note that every         *
  88. * character below is mapped to the character to its right.            *
  89. *                                                                     *
  90. * ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789A                               *
  91. *                                                                     *
  92. * In the sample below the actual user password my9pwd is              *
  93. * encrypted to nzaqxe.                                                *
  94. *                                                                     *
  95. * To provide for additional security, you can specify the password    *
  96. * as ++++++++ (eight plus signs) followed by a blank and the          *
  97. * number 1 (the number 1 is for support of possible future function). *
  98. * This will cause you to get prompted for a password for each         *
  99. * TSO command that is issued (note that the editing a file causes a   *
  100. * a TSO command to be issued to get data set/member information).     *
  101. *                                                                     *
  102. * This line is required.                                              *
  103. *                                                                     *
  104. ***********************************************************************
  105.  
  106. pwd nzaqxe
  107.  
  108. ***********************************************************************
  109. *                                                                     *
  110. * File system specification:                                          *
  111. *                                                                     *
  112. * The following line, which starts with "filesys", specifies which    *
  113. * file system (NFS or SdU) is being used to access MVS data.          *
  114. *                                                                     *
  115. * After the file system name (nfs or sdu) you can optionally          *
  116. * specify "accessmon" which will automatically start the File System  *
  117. * Access Monitor when you start access to the MVS drives.  The Access *
  118. * Monitor will issue a trivial data request to MVS every 15 minutes   *
  119. * to prevent the file system server on MVS from timing out.           *
  120. *                                                                     *
  121. * After "accessmon" you can optionally specify "testaccess" which     *
  122. * will cause the connection to MVS to be automatically tested when    *
  123. * you start access to the MVS drives.  If you want to specify         *
  124. * "testaccess" but do not want the access monitor started then        *
  125. * specify "noaccessmon" in place of "accessmon".                      *
  126. *                                                                     *
  127. * This line is required.                                              *
  128. *                                                                     *
  129. ***********************************************************************
  130.  
  131. filesys nfs accessmon testaccess
  132.  
  133. ***********************************************************************
  134. *                                                                     *
  135. * Network File System (NFS) read timeout specification:               *
  136. *                                                                     *
  137. * The following line, which starts with "readtimeout", specifies the  *
  138. * Network File System (NFS) readtimeout (and also attrtimeout) value  *
  139. * for drives that are mounted via NFS.                                *
  140. *                                                                     *
  141. * This line is optional.  If missing, the readtimeout and attrtimeout *
  142. * attributes will be defaulted by NFS.                                *
  143. *                                                                     *
  144. ***********************************************************************
  145.  
  146. readtimeout 10
  147.  
  148. ***********************************************************************
  149. *                                                                     *
  150. * Network File System (NFS) write timeout specification:              *
  151. *                                                                     *
  152. * The following line, which starts with "writetimeout", specifies the *
  153. * Network File System (NFS) writetimeout values for drives that are   *
  154. * mounted via NFS.                                                    *
  155. *                                                                     *
  156. * This line is optional.  If missing, the writetimeout attribute will *
  157. * be defaulted by NFS.                                                *
  158. *                                                                     *
  159. ***********************************************************************
  160.  
  161. writetimeout 10
  162.  
  163. ***********************************************************************
  164. *                                                                     *
  165. * Network File System (NFS) attributes specification:                 *
  166. *                                                                     *
  167. * The following line, which starts with "nfs", specifies Network      *
  168. * File System (NFS) processing attributes for the drives that are     *
  169. * mounted via NFS.  The possible attribute values are defined by NFS. *
  170. * Missing values will be assigned a default value by NFS.  You should *
  171. * not specify the high level qualifier, text, binary, end-of-line     *
  172. * (such as crlf), read timeout, attribute timeout, write timeout      *
  173. * or name mapping attributes.  These additional NFS attributes are    *
  174. * determined either automatically based on the specification  for     *
  175. * the MVS drives (lines in this file that start with "drive") or      *
  176. * determined by the readtimeout and writetimeout specification in     *
  177. * this file.                                                          *
  178. *                                                                     *
  179. * This line is optional.  If missing, all processing attribute values *
  180. * other than high level qualifier, text, binary, crlf, readtimeout,   *
  181. * attrtimeout, writetimeout, and name mapping will be defaulted by    *
  182. * NFS.                                                                *
  183. *                                                                     *
  184. ***********************************************************************
  185.  
  186. nfs
  187.  
  188. ***********************************************************************
  189. *                                                                     *
  190. * Smart Data Utilties (SdU) attributes specification:                 *
  191. *                                                                     *
  192. * The following line, which starts with "sdu", specifies Smart Data   *
  193. * Utilities (SdU) processing attributes for the drives that are       *
  194. * mounted via SdU.  The possible attribute values are defined by SdU. *
  195. * Missing values will be assigned a default value by SdU.             *
  196. *                                                                     *
  197. * This line is optional.  If missing, all processing attribute values *
  198. * other that high level qualifier will be defaulted by SdU.           *
  199. *                                                                     *
  200. ***********************************************************************
  201.  
  202. sdu pc_ccsid(850)
  203.  
  204. ***********************************************************************
  205. *                                                                     *
  206. * Drives specification:                                               *
  207. *                                                                     *
  208. * The following line(s), which start with "drive", specify one or     *
  209. * more drives that reference your MVS data sets.  One drive is        *
  210. * needed for each data set high level qualifier that you will         *
  211. * access from the workstation.  Data sets that are only referenced    *
  212. * by submitted batch jobs do not require a drive.  The drive letter   *
  213. * must not already be in use for other purposes (for example do not   *
  214. * use c:, which is usually the system boot drive).                    *
  215. *                                                                     *
  216. * The format of the drive specification is:                           *
  217. *                                                                     *
  218. * drive drive_letter: high_level_qualifier text|binary mapping        *
  219. *                                                                     *
  220. * where:                                                              *
  221. *                                                                     *
  222. * text or binary indicate whether the data is text and therefore      *
  223. * requires translation between EBCDIC on the host and ASCII on the    *
  224. * workstation or whether the data is binary and will not be           *
  225. * translated.  If the text or binary specification is omitted, text   *
  226. * is assumed.  To access data for the same high level qualifier as    *
  227. * both text and binary requires two drives, one for each.             *
  228. *                                                                     *
  229. * Note that the high_level_qualifier can specified one or two MVS     *
  230. * data set name qualifier, as for example MYUSER (one MVS qualifier)  *
  231. * or MYUSER.MYPROJ (two MVS qualifiers).                              *
  232. *                                                                     *
  233. * mapping indicates the type of name mapping between MVS member names *
  234. * and workstation file names.  The following mapping specifications   *
  235. * may be given:                                                       *
  236. *                                                                     *
  237. * local - mapping is done locally based on the type specifications    *
  238. *         (see below for details) in this file.                       *
  239. *                                                                     *
  240. * filesys - mapping is done by the file system (NFS only) using the   *
  241. *           default name mapping file.  If there is no default name   *
  242. *           mapping file then name mapping is not performed.          *
  243. *           Note that not all releases of the MVS Network File        *
  244. *           System (NFS) server support file system name mapping.     *
  245. *           name mapping.  Check with your system programmer to       *
  246. *           determine whether your have the required NFS release.     *
  247. *                                                                     *
  248. * filesys dsname - mapping is done by the file system (NFS only)      *
  249. *                  using the specified user name mapping data set.    *
  250. *                                                                     *
  251. * If the name mapping specification is omitted then local is          *
  252. * assumed.                                                            *
  253. *                                                                     *
  254. * To use the File System Access Monitor you need to specify a drive   *
  255. * (text or binary) for the high level qualifier of the SIGYCLST       *
  256. * data set.  The sample below shows this as the v: drive.  Note       *
  257. * that this drive must specify only a single MVS data set name        *
  258. * qualifier.                                                          *
  259. *                                                                     *
  260. *drive v: igy text local                                              *
  261. *drive w: myuser text filesys myuser.nfs.mapping                      *
  262. *drive y: myuser binary local                                         *
  263. *drive z: myuser text local                                           *
  264. *                                                                     *
  265. ***********************************************************************
  266.  
  267. * DO NOT CHANGE THE NEXT LINE THAT SAYS drives placeholder
  268. * drives placeholder
  269.  
  270. ***********************************************************************
  271. *                                                                     *
  272. * Local types mapping specification:                                  *
  273. *                                                                     *
  274. * The following line(s), which start with "type", specify the local   *
  275. * association of a data set low level qualifier with the              *
  276. * corresponding extension used for workstation files.  The local      *
  277. * mappings are ignored if NFS mapping is being used for the drive.    *
  278. *                                                                     *
  279. * The following extensions have special meaning:                      *
  280. *                                                                     *
  281. * CBL - COBOL source (input to the COBOL compiler)                    *
  282. * CPY - COBOL copy file (used by the COBOL COPY statement)            *
  283. * PLI - PL/I source (input to the PL/I compiler)                      *
  284. * OBJ - object code (input to the linkage editor)                     *
  285. * EXE - load module (output of the linkage editor)                    *
  286. * CMD - CLIST or REXX procedure                                       *
  287. * JCL - MVS job control language (JCL) used for batch job submission  *
  288. * LST - compilation or link edit listing                              *
  289. * ADT - Compilation ADATA (SYSADATA)                                  *
  290. * PPR - Preprocessor output                                           *
  291. * OUT - MVS job SYSOUT output                                         *
  292. *                                                                     *
  293. * The specified extension will be used to determine the language      *
  294. * sensitive editing for the data set (there is language sensitive     *
  295. * editing for CBL, CPY, CMD and JCL).  It will also be used to        *
  296. * determine whether certain actions are valid, as for example a       *
  297. * compile action is only valid for data sets with an extension of     *
  298. * CBL.  Files with an extension of OBJ, EXE, LST, ADT, PPR, or OUT    *
  299. * are set to readonly when editing.                                   *
  300. *                                                                     *
  301. * These lines are required if you are using local name mapping and    *
  302. * you want to use either language sensitive editing or project        *
  303. * actions that are dependent on the type of data set.                 *
  304. *                                                                     *
  305. *                                                                     *
  306. ***********************************************************************
  307.  
  308. type cobol cbl
  309. type cobcopy cpy
  310. type pli pli
  311. type obj obj
  312. type load exe
  313. type clist cmd
  314. type sigyclst cmd
  315. type cntl jcl
  316. type listing lst
  317. type outlist out
  318.  
  319. ***********************************************************************
  320. *                                                                     *
  321. * SIGYCLST specification:                                             *
  322. *                                                                     *
  323. * The following line, which starts with "sigyclst", specifies the     *
  324. * fully qualified name of the SIGYCLST data set on MVS.               *
  325. *                                                                     *
  326. * This line is required.                                              *
  327. *                                                                     *
  328. ***********************************************************************
  329.  
  330. sigyclst igy.v2r1m0.sigyclst
  331.  
  332. ***********************************************************************
  333. *                                                                     *
  334. * SYSPROC specification:                                              *
  335. *                                                                     *
  336. * The following line, which starts with "sysproc", specifies the      *
  337. * name of the data sets that are to be allocated to SYSPROC when      *
  338. * executing command procedures on MVS/TSO.  A specification of an     *
  339. * asterisk (*) for a data set is interpreted as being the above       *
  340. * mentioned SIGYCLST data set.  To allow executing the IBM supplied   *
  341. * command procedures you must include the asterisk (*) as one of the  *
  342. * SYSPROC data sets.  If you have your own SYSPROC data sets, then    *
  343. * where you place the * for the SIGYCLST data set will determine      *
  344. * its order within the SYSPROC concatenation.                         *
  345. *                                                                     *
  346. * This line is required.                                              *
  347. *                                                                     *
  348. ***********************************************************************
  349.  
  350. sysproc *
  351.  
  352. ***********************************************************************
  353. *                                                                     *
  354. * Temporary data set drive specification:                             *
  355. *                                                                     *
  356. * The following line, which starts with "tempdata", specifies the     *
  357. * drive to be used for temporary data sets required by certain        *
  358. * operations, as for example the temporary sequential data set used   *
  359. * for protected saves.  If the high level qualifier for the drive     *
  360. * specifies a single MVS data set qualifier then temporary data sets  *
  361. * will have as their high level qualifiers mvsqual.IWZ where mvsqual  *
  362. * is the single MVS data set qualifier specified.  If the high level  *
  363. * qualifier for the drive specifies two MVS data set qualifiers then  *
  364. * temporary data sets will have as their high level qualifier the     *
  365. * specified two MVS data set qualifiers.  The specified drive must    *
  366. * have a usage of text.                                               *
  367. *                                                                     *
  368. * This line is optional.  If missing, temporary data sets will be     *
  369. * created on the first drive with a high level qualifier equal to     *
  370. * the userid and with a usage of text.  The temporary data sets will  *
  371. * have as their high level qualifiers userid.IWZ.                     *
  372. *                                                                     *
  373. ***********************************************************************
  374.  
  375. *tempdata z:
  376.  
  377. ***********************************************************************
  378. *                                                                     *
  379. * Temporary drive specification:                                      *
  380. *                                                                     *
  381. * The following line, which starts with "tempdrive", specifies the    *
  382. * temporary drive be used for Redeveloper functions that copy         *
  383. * files from the MVS host to the workstation.                         *
  384. *                                                                     *
  385. * This line is optional.  If missing, a temporary drive will be       *
  386. * chosen as the first available drive letter from c: through z:.      *
  387. *                                                                     *
  388. ***********************************************************************
  389.  
  390. *tempdrive g:
  391.  
  392. ***********************************************************************
  393. *                                                                     *
  394. * File system requests specification:                                 *
  395. *                                                                     *
  396. * The following lines, which start with "fsstartcmd", "fsstopcmd",    *
  397. * "mountcmd", and "umountcmd" specify user defined command for        *
  398. * starting the file system, stopping the file system, mounting a      *
  399. * drive and unmounting a drive functions respectively.                *
  400. *                                                                     *
  401. * The command specification consists of characters to appear as is    *
  402. * (unlike other data in the MVSINFO.DAT file, these characters are    *
  403. * not converted to uppercase for processing, this is to allow for     *
  404. * commands whose input parameters are case sensitive) and             *
  405. * substitution variables of the form &*varname. where varname         *
  406. * is one of the following:                                            *
  407. *                                                                     *
  408. * system - the system specification from this file                    *
  409. * userid - the userid specification from this file                    *
  410. * pwd    - the pwd specification from this file                       *
  411. * nfs    - the nfs specification from this file                       *
  412. * sdu    - the sdu specification from this file                       *
  413. * user1  - user data specification from this file (add a line that    *
  414. *          starts with user1)                                         *
  415. * user2  - user data specification from this file (add a line that    *
  416. *          starts with user2)                                         *
  417. * user3  - user data specification from this file (add a line that    *
  418. *          starts with user3)                                         *
  419. * user4  - user data specification from this file (add a line that    *
  420. *          starts with user4)                                         *
  421. *                                                                     *
  422. * For mount and unmount functions the following variables may also    *
  423. * be used:                                                            *
  424. *                                                                     *
  425. * readtimeout - the readtimeout specification from this file          *
  426. * writetimeout - the writetimeout specification from this file        *
  427. * timeout - the readtimeout and writetimeout specifications in the    *
  428. *   NFS format ,readtimeout(nn),attrtimeout(nn),writetimeout(nn)      *
  429. * drive - the drive letter followed by a colon (e.g. Z:)              *
  430. * trans - the drive translation in the NFS format (e.g. text,crlf or  *
  431. *   binary)                                                           *
  432. * nfsmap - the name mapping specification in NFS format               *
  433. *   ,fileextmap or ,fileextmap,sidefile(dsname)                       *
  434. *                                                                     *
  435. * To get all the NFS attributes that are normally generated you can   *
  436. * specify the following in your mount command:                        *
  437. *                                                                     *
  438. * &*highqual.,&*trans.&*nfsmap.,nofastfilesize&*timeout.&*nfs.        *
  439. *                                                                     *
  440. * An example of a user mount command would be:                        *
  441. *                                                                     *
  442. * usermnt.exe drive(&*drive.) user(&*userid.) qual(&*highqual.)       *
  443. *                                                                     *
  444. * which when executed might generate:                                 *
  445. *                                                                     *
  446. * usermnt.exe drive(Z:) user(MYUSER) QUAL(SYS1)                       *
  447. *                                                                     *
  448. * If you want to invoke a REXX procedure to perform the functions     *
  449. * then specify the command in the following format:                   *
  450. *                                                                     *
  451. * cmd.exe /c procname.cmd parameters      (this is for OS/2)          *
  452. * rexx procname.cmd parameters            (this is for Windows NT)    *
  453. *                                                                     *
  454. * where procname is the filename (less the extension) of the REXX     *
  455. * procedure and parameters are any optional parameters to be passed   *
  456. * to the REXX procedure.  An example for Windows is:                  *
  457. *                                                                     *
  458. * rexx mymount.cmd &*.drive. &*trans. &*nfsmap.                       *
  459. *                                                                     *
  460. * These lines are optional.  If missing, or if the cammand is         *
  461. * specified as an asterisk (*) then the system supplied default       *
  462. * command will be used for the given function.                        *
  463. *                                                                     *
  464. ***********************************************************************
  465.  
  466. fsstartcmd *
  467. fsstopcmd *
  468. mountcmd *
  469. umountcmd *
  470.  
  471. ***********************************************************************
  472. *                                                                     *
  473. * Protected save specification:                                       *
  474. *                                                                     *
  475. * The following line, which starts with "protsave", specifies that    *
  476. * the editor is to use the protected save mechanism when saving a     *
  477. * partitioned data set member (either PDS or PDSE).  Use of the       *
  478. * protected save mechanism causes the actual update of the member     *
  479. * to occur by using the IEBGENER MVS utility, thus using the same     *
  480. * data management as that of an ISPF editor save.  In particular,     *
  481. * this means that if the save fails, as for example due to lack of    *
  482. * space (x37 abends), then the original contents of the member        *
  483. * before the save will be preserved.                                  *
  484. *                                                                     *
  485. * When using the protected save mechanim the contents of the file     *
  486. * are first saved to a temporary sequential data set on MVS.  By      *
  487. * default this data set is allocated with a space allocation at       *
  488. * least 10,000 lines more than the current size of the member.        *
  489. * If you want the temporary data set to be larger you can specify     *
  490. * a multiplier value after the keyword "yes" (the value must be       *
  491. * an integer).  For example, a multiplier value of 5 will allow       *
  492. * for a space allocation of at least 50,000 lines more than the       *
  493. * current size of the member.  If the multiplier value is missing,    *
  494. * a value of 1 is assumed.                                            *
  495. *                                                                     *
  496. * If protected save is disabled ("protsave no" was explicitly         *
  497. * specified) then if a save fails for a partitioned data set member,  *
  498. * the member contents may be partial (the original contents are       *
  499. * lost).  Therefore, even though the protected save mechanism         *
  500. * takes longer, it is highly recommended that it not be disabled.     *
  501. *                                                                     *
  502. * The protected save processing is not done when saving via           *
  503. * "Save as", as it is assumed that the original contents of the       *
  504. * "Save as" location are no longer required.                          *
  505. *                                                                     *
  506. * This line is optional.  If missing, the protected save processing   *
  507. * will be performed for partitioned data set members.  It can only    *
  508. * be turned off by explicitly specifying "protsave no".               *
  509. *                                                                     *
  510. ***********************************************************************
  511.  
  512. protsave yes 1
  513.  
  514. ***********************************************************************
  515. *                                                                     *
  516. * Close file specification:                                           *
  517. *                                                                     *
  518. * The following line, which starts with "closefile", specifies        *
  519. * whether your MVS Network File System (NFS) server has the support   *
  520. * for doing an immediate close of a file on MVS.  This support allows *
  521. * for closing a file without the need to wait for the appropriate     *
  522. * timeout value to expire, thus providing a fater means of freeing    *
  523. * a file for direct use on MVS.  Note that support for doing an       *
  524. * immediate close of a file on MVS is available only on those         *
  525. * releases of the NFS server that support the file system name        *
  526. * mapping.  Check with your system programmer to determine whether    *
  527. * you have the required NFS release.                                  *
  528. *                                                                     *
  529. * This line is optional.  If missing, instead of doing a immediate    *
  530. * close of a file on MVS, a wait will be done for the appropriate     *
  531. * timeout value.                                                      *
  532. *                                                                     *
  533. ***********************************************************************
  534.  
  535. closefile no
  536.  
  537. ***********************************************************************
  538. *                                                                     *
  539. * High performance MVS commands specification:                        *
  540. *                                                                     *
  541. * The following line, which starts with "mvscomm", specifies whether  *
  542. * the high performance MVS commands facility supplied with this       *
  543. * product should be used instead of the TCP/IP supplied REXEC and     *
  544. * RSH commands.  This support is only available when using the NFS    *
  545. * file system.  See the Getting Started publication for information   *
  546. * on required MVS setup.                                              *
  547. *                                                                     *
  548. * This line is optional.  If missing, the normal TCP/IP supplied      *
  549. * REXEC or RSH commands will be used to issue TSO commands.           *
  550. *                                                                     *
  551. ***********************************************************************
  552.  
  553. mvscomm no
  554.  
  555. ***********************************************************************
  556. *                                                                     *
  557. * REXEC/RSH header lines specification:                               *
  558. *                                                                     *
  559. * The following line, which starts with "header", specifies whether   *
  560. * extra processing needs to be performed to remove system header      *
  561. * lines that may be placed at the start of REXEC/RSH output before    *
  562. * the actual output of the TSO command.  Examples of such lines       *
  563. * may be accounting or security information.  If your MVS system      *
  564. * produces such lines you need to specify "yes" as the parameter      *
  565. * following "header".  Note that this extra processing may affect     *
  566. * performance.  The implementation also causes the length of the      *
  567. * TSO commands to be increased.                                       *
  568. *                                                                     *
  569. * This line is optional.  If missing, the extra processing will be    *
  570. * done to remove REXEC/RSH header lines.                              *
  571. *                                                                     *
  572. ***********************************************************************
  573.  
  574. *header no
  575.  
  576. ***********************************************************************
  577. *                                                                     *
  578. * Maximum command length supported specification:                     *
  579. *                                                                     *
  580. * The following line, which starts with "maxcmd", specifies the       *
  581. * maximum length of a TSO command which is supported by the           *
  582. * combination of your client (REXEC or SdU client on OS/2 and         *
  583. * RSH client on Windows NT) and the REXEC server on MVS.              *
  584. * A limit less than 72 is not supported (it is highly unlikely        *
  585. * that the actual limit will be less than 80).  If a TSO command      *
  586. * exceeds the limit then extra processing will be required.  This     *
  587. * extra processing requires that you have a drive defined for text    *
  588. * usage with your TSO userID as the high level qualifier.  As the     *
  589. * extra processing includes copying the TSO command to a sequential   *
  590. * data set on MVS, it is also required that you have connected to     *
  591. * the MVS drives.                                                     *
  592. *                                                                     *
  593. * This line is optional.  If missing, it will be assumed that your    *
  594. * client/server combination can support the same command length       *
  595. * limit as TSO itself.                                                *
  596. *                                                                     *
  597. ***********************************************************************
  598.  
  599. *maxcmd 240
  600.  
  601. ***********************************************************************
  602. *                                                                     *
  603. * Test data file specification:                                       *
  604. *                                                                     *
  605. * The following line, which starts with "testfile", specifies the     *
  606. * fully qualified name of either a physical sequential file or a      *
  607. * PDS member that is to be accessed by the Test MVS connection        *
  608. * action.  The data set should have fixed 80 byte records (RECFM or   *
  609. * F or FB).  The data set (or member) contents may be anything.       *
  610. * The contents are displayed as part of the testing.                  *
  611. *                                                                     *
  612. * This line is optional.  If missing, the Test MVS connection action  *
  613. * will be limited to issuing the TSO TIME command and getting the     *
  614. * attributes for the MVS system data set SYS1.MACLIB member OPEN.     *
  615. *                                                                     *
  616. ***********************************************************************
  617.  
  618. *testfile myuser.testfile.data(testdata)
  619.  
  620. ***********************************************************************
  621. *                                                                     *
  622. * Null stdin for RSH specification:                                   *
  623. *                                                                     *
  624. * Note: nullstdin yes is now assumed for Windows systems.  It no      *
  625. * longer needs to be specified.                                       *
  626. *                                                                     *
  627. ***********************************************************************
  628. trace 3
  629. ***********************************************************************
  630. *                                                                     *
  631. *                        ---- End of File ----                        *
  632. *                                                                     *
  633. ***********************************************************************
  634.