Is there any way generating automatically a jax-rs client with HttpUrlConnection or third party soloutions like jersey, apache, restlet etc. out of an wadl? Wouldnt it be an advantage to have a framework/application for this?

link|improve this question

2  
Ok. I should have done more research for WADL, then i had noticed that wadl is less supported. Thanks. – user1189762 Feb 6 at 16:10
feedback

2 Answers

up vote 1 down vote accepted

There is a rudimentary client-side code generator from WADL available with Apache CXF JAX-RS implementation (http://cxf.apache.org/docs/jaxrs-services-description.html). It generates some boilerplate code, but it is nothing close to client generators for SOAP/WSDL web services.

link|improve this answer
Okay. And is there any way that frameworks like jersey, resteasy, restlet can do so? – user1189762 Apr 10 at 10:05
1  
I haven't seen anything like that. REST Easy provides "Client framework", Jersey provides "Client API", so writing client is less painful, but still has to be done from scratch. – Piotr Kochański Apr 10 at 13:24
feedback

I use the wadl2java wadl-maven-plugin provided from the wadl site. It uses the Jersey client to do most of the work. Its far from perfect, but I've been using it with some success. It sure beats maintaining my own clients.

link|improve this answer
Does it just use jersey? – user1189762 May 2 at 8:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.