ClaudioM
ClaudioM

Reputation: 1446

WSO2 listAdminServices - services showed in the store page

Is it possible to execute the command listAdminServices from jaggery to show the services list in the store page ?

Upvotes: -2

Views: 121

Answers (1)

Abimaran Kugathasan
Abimaran Kugathasan

Reputation: 32458

is it possible to execute the command listAdminServices from jaggery to show the services list in the store page ?

Currently, You can get this through the OSGI only. And, this is a static list, if you need, you can listdown using OSGI and show it in UI.

  1. Enable Admin Service editing carbon.xml found inside [APIM_HOME]/repository/conf directory

    <HideAdminServiceWSDLs>false</HideAdminServiceWSDLs>
    
  2. Start the APIM like sh wso2server.sh -DosgiConsole
  3. In the OSGI shell, type osgi> listAdminServices

Upvotes: 2

Related Questions