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
0
votes
1 answer

Is there exits WADL file for API's of openstack?

I need WADL file for various API's of openstack. Is this exists anywhere publicly.?? My system need to pick the file, parse and set up API for the end application.
codeofnode
  • 18,169
  • 29
  • 85
  • 142
0
votes
0 answers

Path Id attribute is missing in WADL

I am using jackson-jaxrs-1.5.7.jar for my rest web service. I am using custom CustomWADLGeneratorConfig to generate resource doc. The CustomWADLGeneratorConfig has the code as follows, public List configure() { …
Jaya Ananthram
  • 3,433
  • 1
  • 22
  • 37
0
votes
1 answer

WADL generation for rest WITHOUT using maven

I am new bie to Java REST service. I need to generate WADL file automatically once the application is built for my documentation purpose. There are many examples, but all are related to maven. In my java application I am not using maven. I need…
Jaya Ananthram
  • 3,433
  • 1
  • 22
  • 37
0
votes
0 answers

Discovering REST Service in java

Hi I am working with a REST based service. I have a simple REST Service and my client is exposing it via simple HTTP and I am consuming that service, but I want to discover the definition of REST service. I just want it like how SOAP WSDL works for…
user3409289
0
votes
1 answer

SoapUI WADL authentication

In order to view wadl file from my server in an internet browser it's necessary to authenticate. I would like to test my webservices using soapui however when I add new project and in initial wadl/wsdl I enter path to wadl file on my server the…
BlueLettuce16
  • 2,013
  • 4
  • 20
  • 31
0
votes
1 answer

Java generated code from wadl don't have implementation

I'm new to java code generation from WADL, I used cxf-wadl2java-plugin and it works fine, the problem is that the generated code contains the resource code but no implementation as such: /** * Created by Apache CXF WadlToJava code…
0
votes
1 answer

How to override camelcase on root types in CXF (wadl2java)

I have a type defined in a wadl like so (This is from the ModelCriteria.java generated by wadl2java maven plugin):
Chris K
  • 11,996
  • 7
  • 37
  • 65
0
votes
1 answer

Browser plugin to import REST Web Services WADL file and provide invocation page

Looking for a Browser plugin that can parse a REST Web Services wadl file and present a page listing all the services and a way to invoke any of the services setting appropriate parameters.
user389913
  • 41
  • 1
  • 5
0
votes
0 answers

Dynamically consuming the REST service

We are looking for a solution to consume a REST full service dynamically in C#. It is something like Wcf test client. In our application, user should be able to provide a service url and then select the required data to be used in the…
Hitesh
  • 1,067
  • 1
  • 10
  • 27
0
votes
1 answer

Enhancing wadl in apache CXF with fasterxml.jackson serializer

I have a rest app using fasterxml jackson for serialization. I wanted to enhance the wadl to show the model fields inside the representation tag, such as ...
Tim
  • 1,174
  • 12
  • 19
0
votes
1 answer

Using spring integration and soap/rest as inbounds, can generate completely automatic their wsdl/wadl?

(Maybe, there is hope) If I have spring integration and as inbound soap or rest (http) is it possible to dynamically generate the wsdl and the wadl as in the classical approach? (I have seen that you can expose the wsdl based on a given xsd - but I…
Roxana
  • 1,569
  • 3
  • 24
  • 41
0
votes
0 answers

convert XRD to WSDL/WADL

I want to create a REST client in Java using definitions. I cannot control the server. The service provides me some XRD documents defining it, but my Java tool (Apache CXF) can generate Java classes only from WADL or WSDL documents. I know that XRD…
logoff
  • 3,347
  • 5
  • 41
  • 58
0
votes
2 answers

WADL request representation parameter with nested values (e.g. foo[bar]=baz)

How can I define a request representation parameter that has a nested value? Results in "string value 'foo[bar]' does not match pattern for xs:NMTOKEN"
Brian Gates
  • 474
  • 5
  • 17
0
votes
1 answer

Rest design principles

Is the following a good rest design practice for listing all the subscriptions of a customer: [BaseUrl]/subscriptions/[accountid]/payTV [BaseUrl]/subscriptions/[accountid]/paywall etc... ORshould it rather…
user594883
  • 1,329
  • 2
  • 17
  • 36
0
votes
2 answers

How to get parameter descriptions in WADL-generated documentation

Martin, I've been trying to use your wadl documentation generation code to document a REST interface from Javadoc annotations and I've been unable to get it to document the parameters to the method / query parameters. I'm not quite sure what I'm…
jonawebb
  • 159
  • 2
  • 8
1 2 3
14
15