Questions tagged [wadl]

Web Application Description Language (WADL) is a machine process-able XML description of HTTP-based Web applications, such as REST web services.

Web Application Description Language (WADL) is a machine process-able XML description of HTTP-based Web applications, such as REST () web services.

The description of HTTP-based applications and services is achieved by modeling, from the HTTP interaction standpoint, the provided resources and the relationships between them.

WADL intends to be the REST equivalent of SOAP's Web Services Description Language (), which can also be used to describe REST web services.

For more information, see the Web Application Description Language - W3C Member Submission 31 August 2009 and the W3C Team Comment on it.

219 questions
5
votes
1 answer

Can SoapUI generate .wadl for REST projects? If yes, how?

I am currently working on REST project using the SoapUI v5.0.0 Tool. The intention is to make the project's WADL (web application description languag) available on web. I would like to know if Soap UI provides facilities to generate .wadl for the…
Satt
  • 63
  • 1
  • 1
  • 8
5
votes
3 answers

java tool to create client-side stubs for REST service

Assume I'm given a WADL for a REST webservice, and I've been able to put together a bunch of requests in SoapUI (I'm no stranger to REST or SOAP) - and I've managed to get the wadl2java tool to auto-generate and compile the classes from my WADL. Is…
Chris K
  • 11,996
  • 7
  • 37
  • 65
5
votes
1 answer

Element in Wadl representation

I have an JAX-RS API and I'm generating wadl for it. .. But I want add element to representation to it.
vivek
  • 4,599
  • 3
  • 25
  • 37
5
votes
2 answers

How do I generate WADL from RESTful Java code in IntelliJ IDEA?

I have a simple RESTful service in IntelliJ IDEA 12.1.3 Ultimate. I've tested it. It works. Now I want to create a Java client for this service and need a WADL. Per the instructions at http://wiki.jetbrains.net/intellij/RESTful_WebService , I…
Jason
  • 11,709
  • 9
  • 66
  • 82
4
votes
1 answer

How to generate JavaScript client stub from WADL?

I want to generate a JavaScript stub for invoking the RESTful web service defined in this wadl: http://idi.fundacionctic.org/mobSerenoaWS/application.wadl I tried with the NetBeans REST Web Service plugin on NetBeans 7.0.1. I downloaded the Wadl…
Federico Bellucci
  • 623
  • 2
  • 7
  • 26
4
votes
0 answers

Tools to generate UI from REST endpoint

Are there any tools which auto generate UI if WADL/REST endpoint is provided? If there aren't what would be best way to understand the REST endpoint. Interpret the WADL and auto-generate using jquery would be good approach? Any other suggestions…
Prabhakar
  • 113
  • 1
  • 1
  • 9
4
votes
1 answer

wadl-client-plugin fails on Java 10

Let's start with a wadl-client-plugin configuration that works properly on Java 8 (provided that I added a jaxp.properties file inside the JDK as documented here): org.jvnet.ws.wadl
Jeff Morin
  • 1,010
  • 1
  • 13
  • 25
4
votes
4 answers

Help with Jersey auto-generation of WADL

As described here: http://wikis.sun.com/display/Jersey/WADL I'm using Jersey 1.4 in Tomcat 6. I have tried every possible URI with a "/application.wadl" and all I get is a 404 (not available). I'm obviously not understanding something, but every…
ChrisO
  • 424
  • 1
  • 5
  • 12
4
votes
3 answers

Disable WADL generation on Jersey 1.19.1

I'm using Jersey 1.19.1 on a Web project with Java+Jboss. Everytime I request something from the Webservice, it shows this entry on the server.log: ERROR [STDERR] com.sun.jersey.server.wadl.generators.AbstractWadlGeneratorGrammarGenerator…
doughaase
  • 245
  • 4
  • 13
4
votes
2 answers

Spring tool to generate Rest Client

I need to generate Rest client using a wadl. I am aware of wadl2java maven plugin & command line tool provided by Apache-cxf. However, I could not find any such tool provided by Spring. Does spring provides any plugin to generate client classes…
Ayushi
  • 405
  • 1
  • 9
  • 19
4
votes
1 answer

RESTful service description

From what I understand, I need to use WADL to describe a RESTful web service. Still, I have read many answers in relevant posts, where users are strongly opposed the use of WADL. What are the disadvantages of WADL? Is there any alternative solution?
Anax
  • 9,122
  • 5
  • 34
  • 68
4
votes
1 answer

XSD to Java, specify to use a Java HashMap

I am trying to generate some Java class from XSD schema. I know exactly what I want to generate in Java, and I'm trying to write the corresponding XSD schema. I need to represent a java.util.HashMap (HashMap). I can't find how to specify in the XSD…
hiveship
  • 308
  • 2
  • 7
  • 21
4
votes
0 answers

Python Rest API test case

I need to develop test case for testing the rest services and the only resource provided to me by my client is WADL file and with the help of this I need to come up with the rest client test case. Have written using requests & pytest modules of…
min2bro
  • 4,509
  • 5
  • 29
  • 55
3
votes
2 answers

generating java stubs from WADL

Is there any tool that can generate java stubs from a WADL file. or is there any plugin for eclipse/netbeans that can generate stubs from a WADL file. thanks vicky
vicky
  • 41
  • 1
  • 4
3
votes
1 answer

Is it possible to use WSDL with a REST webservice?

I am new to the area of web-services. Is it possible to use WSDL with REST bindings? Or should I use WADL?
crowso
  • 2,049
  • 9
  • 33
  • 38
1 2
3
14 15