Using CMCI to perform actions on a resource definition
Perform actions on a BAS or CSD resource definition using the CICS Management Client Interface (CMCI).
Before you begin
You must have a connection with the CMCI. For more information, see Setting up CMCI.
About this task
Use a PUT request to perform actions on a resource definition. For the request, specify the URI and an XML body containing the parameters and attributes for the resource, as instructed in the Procedure below.
For information about PUT requests, see CMCI PUT requests.
Procedure
Example
The following example shows an INSTALL request that is applied to all BAS transaction definitions
in the scope that have a name starting with
AA.PUT http://exampledomain.com:12345/CICSSystemManagement/
CICSDefinitionTransaction/<CONTEXT>/
?CRITERIA=NAME%3DAA*
<request>
<action name="INSTALL">
<parameter name="FORCEINS" value="NO"/>
<parameter name="USAGE" value="LOCAL"/>
</action>
</request>The following example shows how to specify a CSDINSTALL action request. This request installs all
CSD transactions that have a name starting with
AA in CSD group
GRP1 in a CICS region named MYREGION. Note that SCOPE specifies
MYREGION and that PARAMETER=CSDGROUP(GRP1) is specified in the URI. The parameters
that you can specify for an action on a CSD resource are listed in the command
description.PUT http://exampledomain.com:12345/CICSSystemManagement/
CICSDefinitionTransaction/<CONTEXT>/MYREGION/
?CRITERIA=NAME%3DAA*&PARAMETER=CSDGROUP%28GRP1%29
<request>
<action name="CSDINSTALL">
</action>
</request>