The following modifications need to be made to your existing JCL procedures:
These changes are highlighted in bold:
//MFAAS PROC DSNQUAL='HLQ.MFA', // TAUQUAL='HLQ.ZSERVER', //* EAUTULIB='CAI.NDVRR15.CSIQAUTH', //* EAUTHLIB='CAI.NDVRR15.CSIQAUTH', //* ECONLIB='CAI.NDVRR15.CSIQLOAD', //* CCMNZMF='YOUR.CMNZMF.LOAD', //* CSERCOMC='YOUR.SERCOMC.LOAD', //* EBIZLIB='YOUR.EBIZ.LOADLIB', // TCPDATA='TCPIP.OS390.TCPDATA' //* //*------------------------------------------------------------------* //* * //* Micro Focus Mainframe Access - Application Server started task * //* * //*------------------------------------------------------------------* //* Q u i c k C o n f i g u r a t i o n * //*------------------------------------------------------------------* //* * //* Change the DSNQUAL value on the PROC statement to the correct * //* value for your installation. * //* * //* Change the TCPDATA value on the PROC statement to specify the * //* data set name used at your installation. For CA TCPAccess you * //* may remove this symbolic parameter and the associated * //* DD statement. * //* * //*------------------------------------------------------------------* //* A d v a n c e d C o n f i g u r a t i o n * //*------------------------------------------------------------------* //* * //* Endevor Considerations * //* ---------------------- * //* If you will be using this Application Server JCL to process * //* Endevor requests, change the EAUTHLIB and ECONLIB values * //* on the PROC statement to specify the data set names of your * //* Endevor AUTHLIB and CONLIB program libraries. * //* Remove the comment asterisks from the two PROC statements * //* and the two DD statements in the STEPLIB concatenation. * //* If you are planning to use Procedure Groups to compile and * //* relink automatically, then increase DYNAMNBR=300 and eliminate * //* the pre-allocation of SYSPRINT and SYSTERM which conflict with * //* standard compile output names. * //* * //* Component Generator IMS Support * //* ------------------------------- * //* If you will be using this Application Server JCL to run * //* your Component Generator eBiz programs, * //* change the EBIZLIB value on the PROC statement to specify the * //* data set name of the load module library containing your eBiz * //* programs. Remove the comment asterisks from the PROC statement * //* and the EBIZLIB DD statement. * //* If you have more than one eBiz program library you can change * //* EBIZLIB to be a concatenation of program library data sets. * //* * //* ChangeMan Considerations * //* ------------------------- * //* If you will be using this Application Server JCL to process * //* ChangeMan requests, change the CCMNZMF and CSERCOMC values * //* on the PROC statement to specify the data set names of your * //* ChangeMan CMNZMF and SERCONC program libraries. * //* Remove the comment asterisks from the two PROC statements * //* and also remove the comment asterisks from the two corresponding * //* DD statements in the STEPLIB concatenatin. * //* Remove the asterisks from the SERPRINT and SER#PARM DD * //* statements in the special ChangeMan section at the end of this * //* procedure. You will need to change the data set name in the * //* SER#PARM statement to the name of your ChangeMan TCPIPORT data * //* set. * //* The XMLIN and XMLOUT DD statements will not be needed if you * //* are using the default ChangeMan interface routine, SERXMLAC. * //* * //* * //* Change Log * //* * //* ChangeID Description * //* -------- -------------------------------------------------------* //* V6.00 MAINFRAME ACCESS XML CONFIGURATION SUPPORT * //*------------------------------------------------------------------* //* //MFAAS EXEC PGM=MFMFM,REGION=64M,PARM='/ASJOB' //STEPLIB DD DISP=SHR,DSN=&DSNQUAL..LOADLIB // DD DISP=SHR,DSN=&TAUQUAL..AUTHLIB // DD DSNAME=CEE.SCEERUN,DISP=SHR // DD DSNAME=CEE.SCEERUN2,DISP=SHR //*----------------------------------------------------- //* Optional site-dependent ChangeMan program libraries //*----------------------------------------------------- //* DD DISP=SHR,DSN=&CCMNZMF //* DD DISP=SHR,DSN=&CSERCOMC //*--------------------------------------------------- //* Optional site-dependent Endevor program libraries //*--------------------------------------------------- //* DD DISP=SHR,DSN=&EAUTULIB //* DD DISP=SHR,DSN=&EAUTHLIB //*CONLIB DD DISP=SHR,DSN=&ECONLIB //DLL DD DISP=SHR,DSN=&DSNQUAL..LOADLIB //TABLES DD DISP=SHR,DSN=&DSNQUAL..TABLES //XDBIN DD DISP=SHR,DSN=&DSNQUAL..CNTL(PARMSAS) //CEEOPTS DD DISP=SHR,DSN=&DSNQUAL..CNTL(CEEOPTS) //SYSPRINT DD SYSOUT=A //SYSTERM DD SYSOUT=A //SYSUDUMP DD SYSOUT=A //XDBOUT DD SYSOUT=A //* //*-------------------------------- //* Site-dependent TCP/IP data set //*-------------------------------- //* //SYSTCPD DD DISP=SHR,DSN=&TCPDATA //* //*---------------------------------------------- //* Optional site-dependent eBiz program library //*---------------------------------------------- //* //*EBIZLIB DD DISP=SHR,DSN=&EBIZLIB //* //*---------------------------------------------- //* Optional site-dependent ChangeMan data sets //*---------------------------------------------- //* //*SERPRINT DD SYSOUT=A //*SER#PARM DD DISP=SHR,DSN=your.TCPIPORT //*XMLIN DD DISP=SHR,DSN=xml.input.dataset //*XMLOUT DD DISP=SHR,DSN=xml.output.dataset //*