
//USERLIB DD DSN=MY.HEADERS,DISP=SHR,CCUEXT=(H,HPP)
//COMPILE EXEC PGM=CBCDRVR,..
//SYSIN ..
//SYSOUT DD CCUEXT=CCUOUT,DISP=(NEW,DELETE),SPACE=(32000,(30,30)),
// DCB=(RECFM=VB,LRECL=137,BLKSIZE=882)
After
the program CBCDRVR is executed, the contents of SYSOUT will be read
and returned to the client as the COMPILE.SYSOUT file in the client's
file system.//COMPILE EXEC PGM=CBCDRVR,..
//SYSIN ..
//SYSOUT DD CCUEXT=CCUSTD,DISP=(NEW,DELETE),SPACE=(32000,(30,30)),
// DCB=(RECFM=VB,LRECL=137,BLKSIZE=882)
After
the program CBCDRVR is executed, the contents of SYSOUT will be read,
placed on STDOUT and returned to the client as the COMPILE.SYSOUT
file in the client's file system//COMPILE EXEC PGM=CBCDRVR,..
//SYSIN ..
//SYSOUT DD CCUEXT=CCUERR,DISP=(NEW,DELETE),SPACE=(32000,(30,30)),
// DCB=(RECFM=VB,LRECL=137,BLKSIZE=882)
After
the program CBCDRVR is executed, the contents of SYSOUT will be read,
placed on STDERR, and returned to the client as the COMPILE.SYSOUT
file in the client's file system.//* MVS Dataset, temporary with no DSN
//SYSIN DD CCUEXT=(C,CPP),DISP=(NEW,DELETE),
// UNIT=VIO,SPACE=(TRK,(10,5)),
// DCB+(RECFM=VB,LRECL=256,BLKSIZE=2560)
//* MVS Dataset, already existing
//STEPLIB DD DSNAME=CEE.SCEERUN,DISP=SHR
//* HFS file. The input files with extension=WSDL will be written to
//* this directory. The output files with extension=WSDL will be copied
//* from this directory.
//MYXML DD HFSPATH=&EZEDESTDIR,CCUEXT=(WSDL)