| Oracle® Communications Diameter Signaling Router Subscriber Database Server Provisioning Interface Release 8.3 E93213 |
|
![]() Previous |
![]() Next |
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.
<deleteDomainRequest timeout="10">
<domainList>
<domain>tekelec.com</domain>
<domain>oracle.com</domain>
<domain>cgbu-oracle.com</domain>
</domainList>
</deleteDomainRequest>
<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.
<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>
<ns2:sdsResult affected="2" error="0"> </ns2:sdsResult>
Delete Domain Identifier (Failure)
This example fails because no Domain Identifiers are found.
<deleteDomainRequest timeout="10">
<domainList>
<domain>tekelec.com</domain>
<domain>oracle.com</domain>
</domainList>
</deleteDomainRequest>
<ns3:deleteDomainResponse> <result description=”domain id not found” affected="0" error="2032"> </result> </ns3:deleteDomainResponse>