The PERFORM PIPELINE command

Use this command with the SCAN option command to initiate a scan of the web service binding directory that is specified in the WSDIR attribute of the PIPELINE.

Read syntax diagramSkip visual syntax diagramPERFORM PIPELINE( data-value)SCOPE( data-value)SCANTIMEOUT( 300)TIMEOUT( data-value)

Options

PIPELINE (data-value)
Specifies the name of the pipeline (up to 8 characters). Wildcards are supported.
SCAN
If the WSDIR attribute is not specified in the PIPELINE, there is nothing to scan. If the directory location specified is valid, CICS examines the Web service binding files in the directory to determine if they should be installed into the system.
SCOPE (data-value)
Specifies the CICS® System, or CICS System Group (up to 8 characters) where the pipeline is installed.
TIMEOUT ( 300 | data-value)
An optional numerical value that specifies the maximum amount of time in seconds (1 - 1800 inclusive) for the command to complete. For more information about how to choose an appropriate TIMEOUT value, see Troubleshooting the DFHDPLOY utility.

For more information about CICS processing of the PERFORM PIPELINE command, see SET PROGRAM.

Example

The following example connects to MYPLEX and scans all PIPELINEs in AOR1 and then only PIPELINE PIPE1 in AOR2:

//DFHDPLY1 JOB CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID
//*
//DFHDPLOY EXEC PGM=DFHDPLOY
//*
//STEPLIB  DD DISP=SHR,DSN=CICSTS54.CICS.SDFHLOAD
//         DD DISP=SHR,DSN=CICSTS54.CPSM.SEYUAUTH
//SYSTSPRT DD SYSOUT=*
//SYSIN    DD *
SET CICSPLEX(MYPLEX);
*
PERFORM PIPELINE(*) SCAN SCOPE(AOR1) TIMEOUT(300);
*
PERFORM PIPELINE(PIPE1) SCAN SCOPE(AOR2) TIMEOUT(300);
/*