You can translate the question and the replies:

Denodo Rest Web service End point

Is there a way to get list of all available Rest web service end points ? Our Team is working on a functionality which needs to detect if a Webservice is up or not on a Denodo server. To make it work , we need to list all available ends point and then envoke a ping request corresponding to each webservice
user
15-01-2018 13:45:29 -0500
code

2 Answers

Hi, You can use the [GET_ELEMENTS()](https://community.denodo.com/docs/html/browse/6.0/vdp/vql/stored_procedures/predefined_stored_procedures/get_elements) function or the [WEBCONTAINER_ELEMENTS()](https://community.denodo.com/docs/html/browse/6.0/vdp/vql/stored_procedures/predefined_stored_procedures/webcontainer_elements) stored procedure to get this list. I'd suggest the latter, as it will allow you to filter by *servicetype=REST* as well as *deployed=true* if desired. In addition to the *servicename*, it provides the *context* path if you need it, so you can concatenate the server path for your ping process. `CALL WEBCONTAINER_ELEMENTS(null, null, 'REST', null, null, null, null);` Hope this helps!
Denodo Team
17-01-2018 12:06:16 -0500
code
Thanks a lot !
user
18-01-2018 00:00:33 -0500
You must sign in to add an answer. If you do not have an account, you can register here