Go to primary content
Oracle® Communications Diameter Signaling Router Subscriber Database Server Provisioning Interface
Release 8.3
E93213
Go To Table Of Contents
Contents

Previous
Previous
Next
Next

Examples

These examples show the SDS provisioning request and response contents stored within the appropriate SOAP envelope body tag (<soapenv:Body> or <SOAP-ENV:Body>).

Delete Domain Entities

This example successfully deletes three Domain Identifiers.

Request:
<deleteDomainRequest timeout="10">
  <domainList>
    <domain>tekelec.com</domain>
    <domain>oracle.com</domain>
    <domain>cgbu-oracle.com</domain>
  </domainList>
</deleteDomainRequest>
Result:
<ns2:sdsResult affected="3" error="0">
</ns2:sdsResult>

Delete Some, but not all, Domain Identifiers

This example successfully deletes two Domain Identifiers, but other Domain Identifiers were not found; hence, they were not deleted.

Request:
<deleteDomainRequest timeout="10">
  <domainList>
    <domain>tekelec.com</domain>
    <domain>oracle.com</domain>
    <domain>redoracle.com</domain>
    <domain>myoracle.com</domain>
    <domain>oracletest.com</domain>
  </domainList>
</deleteDomainRequest>
Result:
<ns2:sdsResult affected="2" error="0">
</ns2:sdsResult>

Delete Domain Identifier (Failure)

This example fails because no Domain Identifiers are found.

Request:
<deleteDomainRequest timeout="10">
  <domainList>
    <domain>tekelec.com</domain>
    <domain>oracle.com</domain>
  </domainList>
</deleteDomainRequest>
Result:
<ns3:deleteDomainResponse>
  <result description=”domain id not found” affected="0" error="2032">
  </result>
</ns3:deleteDomainResponse>