7

Is WADL a real standard like WSDL? Must WADL URI end with ".wadl" extension?

I've created an HelloWorld example in Jersey and I've got the WADL from URL. Then I've created a client using "wadl-client-plugin" and it works.

My question is this: if I use another framework (i.e. CXF) that generate WADL, can I use it in my "wadl-client-plugin" to create the client?

rds
  • 26,253
  • 19
  • 107
  • 134
pasquy73
  • 563
  • 3
  • 13

1 Answers1

4

The REST approach is simpler than SOAP, but unfortunately there is no standard at the moment.

More specifically, concerning WADL, the W3 team answered:

W3C is pleased to receive the Web Application Description Language from SUN Microsystems Inc. As of today, W3C has no plans to take up work based on this Submission. We encourage people interested by this work to discuss on the public-web-http-desc@w3.org Mailing List

However, there are ways to create clients from WADL

Community
  • 1
  • 1
rds
  • 26,253
  • 19
  • 107
  • 134
  • 1
    Thank you for reply. My idea is to create an eclipse plugin to generate my client. In the wizard you can choose the endpoint (WADL URL) and create client class. – pasquy73 Mar 07 '13 at 11:01
  • 1
    I'm using jersey API to create the class client in the plugin. – pasquy73 Mar 07 '13 at 11:11
  • If you are interesting in Eclipse plugin to generate a java client class from WADL, you can see at link http://stackoverflow.com/questions/9159881/restful-client-from-wadl/16709008#16709008 – pasquy73 May 31 '13 at 09:29