How can I generate WADL for REST services

basiljames picture basiljames · Sep 13, 2012 · Viewed 91.4k times · Source

I have a web application providing more than 30 REST services (using Jersey) to clients. Is it possible to automatically create a WADL document for my application?

I need this, so that I can have it configured in SoapUI for testing various scenarios and save it for later use.

Answer

Bill picture Bill · Sep 26, 2012

If you are using Jersey then url to wadl would be something like

http://localhost:8080/applicationname/application.wadl

You may need to add the resource base into the url e.g.

http://localhost:8080/applicationname/resources/application.wadl