Digital Certificate Access Server (DCAS) sample procedure (EZADCASP)

Figure 1. DCA server configuration file sample
//DCAS      PROC
//*
//*   IBM Communications Server for z/OS
//*   SMP/E distribution name: EZADCASP
//*
//*   5694-A01 (C) Copyright IBM Corp. 2000, 2005
//*   Licensed Materials - Property of IBM
//*   "Restricted Materials of IBM"
//*   Status = CSV1R7
//*
//*   Function: Sample procedure for running the Digital
//*             Certificate Access Server (DCAS)
//*
//DCAS   EXEC PGM=EZADCDMN,REGION=4096K,TIME=NOLIMIT,
//   PARM='POSIX(ON) ALL31(ON) / -d 1 -l SYSLOGD'
//*
//*** Notes:
//*
//* - DCAS can also be invoked from the Unix System Services shell
//*   as a shell command: dcas
//*
//* - The z/OS Secure Socket Layer (SSL) product libraries must
//*   be accessible at runtime to DCAS-  hlq.mlq.SGSKLOAD.
//*
//* - The system link list concatenation must contain the TCP/IP
//*   runtime libraries and the C runtime libraries.  If they are
//*   not in the link list concatenation, this procedure will need
//*   to be changed to STEPLIB to them.
//*
//* - To pass parameters to DCAS, specify them after the final slash
//*   on the PARM statement.  For example:
//*      //   PARM=('POSIX(ON) ALL31(ON)',
//*      //   'ENVAR("LIBPATH=/usr/lib")/-d 3 -l SYSLOGD')
//*
//* - Other examples
//* //     PARM=('POSIX(ON) ALL31(ON) TERMTHDACT(UATRACE) TRAP(ON)',
//* //     'ENVAR("DCAS_CONFIG_FILE=/u/us1/xxx.conf")/ -d 3 -l SYSLOGD')
//*
//*
//*
//STDENV   DD DUMMY
//SYSPRINT DD SYSOUT=*,DCB=(RECFM=F,LRECL=80,BLKSIZE=80)
//SYSIN    DD DUMMY
//SYSERR   DD SYSOUT=*
//SYSOUT   DD SYSOUT=*,DCB=(RECFM=F,LRECL=80,BLKSIZE=80)
//CEEDUMP  DD SYSOUT=*,DCB=(RECFM=FB,LRECL=132,BLKSIZE=132)