Details

    • Type: Bug Bug
    • Status: Rejected Rejected (View Workflow)
    • Priority: Normal Normal
    • Resolution: Not Fixed
    • 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

        Abdulrahman Dabboussi made changes -
        Field Original Value New Value
        Gantt Options Milestone (set to milestone: having a due date but zero effort)
        Planned Start 2026-03-17 24:00 (milestone: set planned start date to due date)
        Planned End 2026-03-17 24:00 (milestone: set planned end date to due date)
        Zein Trabelsi made changes -
        Assignee Zein Trabelsi [ ztrabelsi ] Ayed Bada [ abada ]
        Hide
        Ayed Bada added a comment -

        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';

        Show
        Ayed Bada added a comment - 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';
        Ayed Bada made changes -
        Status Open Bug [ 10108 ] Rejected [ 10100 ]
        Assignee Ayed Bada [ abada ] Mbaye Lo [ mbayel ]
        Resolution Cancelled [ 10100 ]
        Mbaye Lo made changes -
        Assignee Mbaye Lo [ mbayel ] Zein Trabelsi [ ztrabelsi ]
        Hide
        Mbaye Lo added a comment - - edited

        Please provide a sample in Omantel platforms 179 and 84 and to be demoed in SRD UI

        I got below list of site IDs, but the output is still empty

        SIT IDs :
        D0100
        M0001
        48
        D0001
        Q0415
        K0001
        M0010
        M0028
        Default Site
        TB-10K-ADSL
        TRG-PE-CORE-NE80E-1
        S0001
        M0011

        REQUEST / RESPONSE :
        <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>TRG-PE-CORE-NE80E</siteIds>
        <!-Optional:->
        <pathsNum>50</pathsNum>
        </ser:getIPCoreRoute>
        </soapenv:Body>
        </soapenv:Envelope>

        <soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/>
        <soap:Body>
        <ns2:getIPCoreRouteResponse xmlns:ns2=http://server.internal.api.srd.nep.mobinets.com//>
        </soap:Body>
        </soap:Envelope>

        Show
        Mbaye Lo added a comment - - edited Please provide a sample in Omantel platforms 179 and 84 and to be demoed in SRD UI I got below list of site IDs, but the output is still empty SIT IDs : D0100 M0001 48 D0001 Q0415 K0001 M0010 M0028 Default Site TB-10K-ADSL TRG-PE-CORE-NE80E-1 S0001 M0011 REQUEST / RESPONSE : <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>TRG-PE-CORE-NE80E</siteIds> <!- Optional: -> <pathsNum>50</pathsNum> </ser:getIPCoreRoute> </soapenv:Body> </soapenv:Envelope> <soap:Envelope xmlns:soap= http://schemas.xmlsoap.org/soap/envelope/ > <soap:Body> <ns2:getIPCoreRouteResponse xmlns:ns2= http://server.internal.api.srd.nep.mobinets.com// > </soap:Body> </soap:Envelope>
        Mbaye Lo made changes -
        Resolution Cancelled [ 10100 ] Not Fixed [ 10200 ]
        Status Rejected [ 10100 ] Reopened [ 4 ]
        Hide
        Zein Trabelsi added a comment -

        The siteIds parameter must be Site IDs of PE routers, visible in SRD UI under Inventory → Router (Site ID column). The test environment has no PE routers configured (NE_Network_Position = PE not set on any router in NEP inventory), which is why the API returns empty. Valid testing requires at least 2 PE routers configured in NEP inventory.

        Show
        Zein Trabelsi added a comment - The siteIds parameter must be Site IDs of PE routers, visible in SRD UI under Inventory → Router (Site ID column). The test environment has no PE routers configured (NE_Network_Position = PE not set on any router in NEP inventory), which is why the API returns empty. Valid testing requires at least 2 PE routers configured in NEP inventory.
        Zein Trabelsi made changes -
        Status Reopened [ 4 ] Dev Scheduled [ 10014 ]
        Zein Trabelsi made changes -
        Status Dev Scheduled [ 10014 ] Implementation in progress [ 10016 ]
        Zein Trabelsi made changes -
        Status Implementation in progress [ 10016 ] Rejected [ 10100 ]
        Assignee Zein Trabelsi [ ztrabelsi ] Mbaye Lo [ mbayel ]
        Hide
        Mbaye Lo added a comment -

        Previous list is got from the sql code shared by Ayed, which include "value = 'PE" :

        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';

        Show
        Mbaye Lo added a comment - Previous list is got from the sql code shared by Ayed, which include "value = 'PE" : 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';
        Mbaye Lo made changes -
        Status Rejected [ 10100 ] Reopened [ 4 ]
        Mbaye Lo made changes -
        Comment [ Previous list is got from the sql code shared by Ayed, which include "value = 'PE" :

        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';
        ]
        Mbaye Lo made changes -
        Assignee Mbaye Lo [ mbayel ] Zein Trabelsi [ ztrabelsi ]
        Zein Trabelsi made changes -
        Attachment Untitled.png [ 135021 ]
        Hide
        Zein Trabelsi added a comment -

        find attached sample request from 84 server :
        forget the query you must copy two site ids from the report in SRD UI, link of report : http://10.164.144.84:9189/NEP_SRD_UI/reporting/router

        Show
        Zein Trabelsi added a comment - find attached sample request from 84 server : forget the query you must copy two site ids from the report in SRD UI, link of report : http://10.164.144.84:9189/NEP_SRD_UI/reporting/router
        Zein Trabelsi made changes -
        Status Reopened [ 4 ] Dev Scheduled [ 10014 ]
        Zein Trabelsi made changes -
        Status Dev Scheduled [ 10014 ] Rejected [ 10100 ]
        Assignee Zein Trabelsi [ ztrabelsi ] Mbaye Lo [ mbayel ]
        Hide
        Mbaye Lo added a comment -

        The output is fine now, but there is a performance issue now : 6s on OLD, versu 11s on NEW. See screenshots

        Show
        Mbaye Lo added a comment - The output is fine now, but there is a performance issue now : 6s on OLD, versu 11s on NEW. See screenshots
        Mbaye Lo made changes -
        Attachment GetIPCoreToute2.jpg [ 135117 ]
        Attachment GetIPCoreToute1.jpg [ 135118 ]
        Mbaye Lo made changes -
        Assignee Mbaye Lo [ mbayel ] Zein Trabelsi [ ztrabelsi ]
        Hide
        Zein Trabelsi added a comment -

        fixed available with release 53

        Show
        Zein Trabelsi added a comment - fixed available with release 53
        Transition Time In Source Status Execution Times Last Executer Last Execution Date
        Open Bug Open Bug Rejected Rejected
        21d 3h 52m 1 Ayed Bada 31/Mar/26 1:40 PM
        Dev Scheduled Dev Scheduled Implementation in progress Implementation in progress
        5s 1 Zein Trabelsi 14/May/26 10:36 AM
        Implementation in progress Implementation in progress Rejected Rejected
        6s 1 Zein Trabelsi 14/May/26 10:36 AM
        Rejected Rejected Reopened Reopened
        42d 23h 41m 2 Mbaye Lo 16/May/26 10:44 AM
        Reopened Reopened Dev Scheduled Dev Scheduled
        6d 35m 2 Zein Trabelsi 19/May/26 1:57 PM
        Dev Scheduled Dev Scheduled Rejected Rejected
        5s 1 Zein Trabelsi 19/May/26 1:57 PM
        Subversion JIRA

        Links Hierarchy

         Documentation

        Invalid license: EXPIRED

          People

          • Assignee:
            Zein Trabelsi
            Reporter:
            Mbaye Lo
            Rejected By:
            Zein Trabelsi
          • Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

            • Due:
              Created:
              Updated:
              Resolved:
              Planned Start:
              Planned End:

              Drag and Drop