Examples

Commit a Transaction (success)

These examples show the SDS provisioning request and response contents that are stored within the <soapenv:Body> or <SOAP-ENV:Body> tags. See Start Transaction Examples for an example that contains the entire SOAP request/response text.

This example successfully commits a transaction.

Request:
<commitRequest> </commitRequest>
Response:
<ns2:sdsResult affected="15" error="0">
</ns2:sdsResult>

Commit a Transaction that is not Open (fail)

This example attempts to commit a transaction but fails because a transaction was not open.

Request:
<commitRequest> </commitRequest>
Response:
<ns2:sdsResult affected="0" error="1009">
</ns2:sdsResult>