Guys, Is there a way to list all the endpoints of a rest application? Something like what we have in the log files?
DELETE http://localhost:8080/photodb/rest/photos/{id} -> Boolean delete(Long) GET http://localhost:8080/photodb/rest/photos/ -> List list() throws IOException GET http://localhost:8080/photodb/rest/photos/{id} -> PhotoDto get(Long) POST http://localhost:8080/photodb/rest/photos/ -> PhotoDto post(PhotoDto) PUT http://localhost:8080/photodb/rest/photos/ -> PhotoDto put(PhotoDto) I would like to create a REST client in the TomEE GUI which lists all the available services. It would have a dropdown list with the paths of the endpoints and the available HTTP methods for those; and a grid where the user would pass the "form" parameters. I guess this would be very useful for devs. Maybe even for ops. For now, the only thing I'm able to list is " http://localhost:8080/photodb/rest -> photodb.service.ApplicationConfig" (via "WebServiceHelperImpl"). I know where the system logs the information above, but I can't manage to see where it is saved and how to retrieve it. Any hint? []s, Thiago. On Thu, Sep 19, 2013 at 10:15 AM, Thiago Veronezi <[email protected]>wrote: > Hi devs, > > I just would like to let you know that I didn't forget about the gui. :O) > I'm working on a new polished version of the TomEE GUI. > It should be committed this evening. > > > https://dl.dropboxusercontent.com/u/1459144/tomee-list/new_polished_ui_01.png > > https://dl.dropboxusercontent.com/u/1459144/tomee-list/new_polished_ui_02.png > > I still need to but back the list of webservices and jndi. I will probably > ping you guys later for some help/advice. > > []s, > Thiago. > >
