stopAndCancel

Stops and cancels all the jobs for the specified configuration.

Applies to Clouds and Integration Appliances.

Parameters:

projectName
The name of the specified project.
version
The version number for the specified project.
configName
The configuration name for the specified project.

Together projectName, version, and configName uniquely identify a configuration.

Returns:
Success or failure.

Examples:

The following example is a SOAP request to stop and cancel the configuration.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:dep="http://www.approuter.com/schemas/2008/1/deployment">
 <soapenv:Header>
  <dep:sessionId>85EBDCE6FF0685C296D79CD55D86405F</dep:sessionId>
 </soapenv:Header>
 <soapenv:Body>
  <dep:stopAndCancel>
   <dep:projectName>HTTP_363i</dep:projectName>
   <dep:version>1.0</dep:version>
   <dep:configName>HTTP_363j</dep:configName>
  </dep:stopAndCancel>
 </soapenv:Body>
</soapenv:Envelope></soapenv:Envelope>
The following example is the SOAP response to the request.
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
 <S:Body>
  <ns2:stopAndCancelResponse xmlns:ns2="http://www.approuter.com/
  schemas/2008/1/deployment" xmlns:ns3="http://www.approuter.com/schemas/2008/1/
  deployment/types" xmlns:ns4="http://www.approuter.com/schema/router/1000/
  security/03" xmlns:ns5="http://www.approuter.com/schemas/2008/1/util/types">
   <ns2:success>true</ns2:success>
  </ns2:stopAndCancelResponse>
 </S:Body>
</S:Envelope>