Details
-
Type:
Bug
-
Status:
Rejected
(View Workflow)
-
Priority:
Normal
-
Resolution: Cancelled
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: SRD
-
Labels:
-
Customer:OMAN-Tel
-
Product:NEP
Description
Review SRD API getIPCoreRoute
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://server.internal.api.srd.nep.mobinets.com/">
<soapenv:Header/>
<soapenv:Body>
<ser:getIPCoreRoute>
<!-Zero or more repetitions:->
<siteIds>H0001</siteIds>
<!-Optional:->
<pathsNum>1</pathsNum>
</ser:getIPCoreRoute>
</soapenv:Body>
</soapenv:Envelope>
Activity
- All
- Comments
- Work Log
- History
- Activity
- Links Hierarchy
- Transitions
- Trace
The API currently returns an empty response. To get a complete response, we need to run the following query to retrieve the siteId covered by the API:
SELECT srv.site_id
FROM SRD_ROUTER_VIEW srv
INNER JOIN ELEMENTADDITIONALINFO edi
ON srv.id = edi.ElementId
WHERE attribute = 'NE_Network_Position'
AND value = 'PE';