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 that are stored within the
<soapenv:Body>
or
<SOAP-ENV:Body>
tags. See Start
Transaction
Examples
for an example of the whole SOAP request/response text.
Delete NAI Routing Entities
This example successfully deletes three NAI routing entities.
<deleteSubscriberNaiRequest timeout="10"> <naiList> <host>oracle.com</host> <user>John.Smith</user> <user>Jane.Doe</user> <user>Mike.Jones</user> </naiList> </deleteSubscriberNaiRequest>
<ns2:sdsResult affected="3" error="0"> </ns2:sdsResult>
Delete Several NAI Routing Entities
This example successfully deletes two NAI routing entities. Other NAI values were not found and were not deleted.
<deleteSubscriberNaiRequest timeout="10"> <naiList> <host>oracle.com</host> <user>John.Smith</user> <user>Ann.Jones</user> <user>Jane.Doe</user> <user>Mike.Jackson</user> </naiList> </deleteSubscriberNaiRequest>
<ns2:sdsResult affected="2" error="0"> </ns2:sdsResult>
Delete NAI Routing Entities (failure)
This example fails because no NAI subscribers are found.
<deleteSubscriberNaiRequest> <naiList> <host>junk.com</host> <user>John.Smith</user> <user>Jane.Doe</user> </naiList> </deleteSubscriberNaiRequest>
<ns3:deleteSubscriberNaiResponse> <result description=”host not found” affected="0" error="2010"> </result> </ns3:deleteSubscriberNaiResponse>