saveOrchestrationValues
Saves the specified values for the specified orchestration.
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.
- values
- The specified values to save for the specified orchestration.
Together projectName, version, and configName uniquely identify a configuration.
- Returns:
- Success or failure.
Examples:
The following example is a SOAP
request to save the values for the specified orchestration.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:dep="http://www.approuter.com/schemas/2008/1/deployment">
<soapenv:Header>
<dep:sessionId>AACA96757B36C2B4582C811197EE43C0</dep:sessionId>
</soapenv:Header>
<soapenv:Body>
<dep:saveOrchestrationValues>
<dep:projectName>HTTP_363i</dep:projectName>
<dep:version>1.0</dep:version>
<dep:configName>HTTP_363j</dep:configName>
<dep:values>
<enabled>true</enabled>
<syncLoggingEnabled>false</syncLoggingEnabled>
<loggingLevel>errorValues</loggingLevel>
<maxJobs>1</maxJobs>
<orchestrationRelativeurl>orchestrationRelativeurl>project-url://
Orchestrations/
Receive</orchestrationRelativeurl>
<state>stopped</state>
</dep:values>
</dep:saveOrchestrationValues>
</soapenv:Body>
</soapenv:Envelope>
The following example is
the SOAP reply to the request.
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:saveOrchestrationValuesResponse 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:saveOrchestrationValuesResponse>
</S:Body>
</S:Envelope>