Tagged Questions
7
votes
6answers
5k views
What is the reason for using wadl?
To describe RESTful we can say every resource has its own URI. Using HTTP GET, POST, PUT, DELETE we can operate on these resources. All the resources are representational. Who wants to use our ...
7
votes
1answer
917 views
Why the slow WADL uptake?
I've been researching WADL and am wondering why it isn't more widely adopted?
With the rate at which REST usage seems to be growing, I'm surprised that more development efforts don't use it.
Is ...
5
votes
1answer
312 views
On REST: WADL or not IDL, is the following approach right?
This question is a bit long, please bear with me.
In REST, i think we should not need WADL or any IDL. But rather something that would implicitly cover its concept. The way I think about it is when ...
5
votes
2answers
987 views
Difference between WSDL 2.0, WADL & XRD?
WSDL 2.0: www.w3.org/TR/wsdl20/
WADL www.w3.org/Submission/wadl/
XRD www.oasis-open.org/committees/download.php/35274/xrd-1.0-wd10.html
All three can be used a REST API descriptors. What's the ...
4
votes
1answer
223 views
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 ...
4
votes
5answers
981 views
Should I describe REST services in a machine readable format?
Most REST interfaces I see are described with a simple web page describing the URL, the method, accepted input and returned result. For example the Amazon S3 or the Twitter API documentation.
But why ...
3
votes
2answers
871 views
How to build good documentation with REST API in Rails?
Currently, I am working on building RESTful web service in Rails. I am looking for some ways to build a good documentation in my Rails RESTful web service. I found some ways to do it:
Wiki like ...
2
votes
3answers
193 views
REST web service WSDL?
I am implementing a web service and I have implemented both a REST and SOAP version to see which suited my needs.I have decided to choose REST because of its simplicity and that I will probably be ...
2
votes
3answers
4k views
WADL/WSDL 2.0 for RESTful services in Ruby on Rails
Is there any way of publishing the parameters expected by the RESTful methods in Ruby on Rails? Using SOAP, we can use WSDL, but does RoR implement WADL or WSDL 2.0 for RESTful services?
Edit: I am ...
2
votes
4answers
3k views
Creating a REST client API
I'm currently looking into options for creating a client API for a RESTfull application. Up until now we have had WCF services to allow all application to connect to the Business Layer and we're ...
1
vote
0answers
21 views
CXF JAXRS | Complex response types are not present in the generated wadl
We use cxf 2.5.2 along with spring for exposing and consuming restful services.
For distributing the service interface classes, we started using wadl2java goal (which generates interface classes based ...
1
vote
0answers
41 views
Restful Client from WADL
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 ...
1
vote
0answers
55 views
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 ...
1
vote
1answer
170 views
Define WADL resources base in Jersey
I am using Jersey 1.9 and it is generating my WADL perfectly except I need to redefine the resources base URI.
I'm running Jetty 7 sitting behind Apache using mod_proxy as a reverse proxy to route ...
1
vote
1answer
86 views
RESTful development -How to share with clients?
I am using Jersey/Tomcat6 for dveloping some web services. Compared to what I did for SOAP services, I am not getting the idea what should I share to my clients once the services are developed...just ...
1
vote
1answer
1k views
How to generate WADL file?
I wrote RESTful web service using RESTeasy implementation and turn EJB into JSON. And now I'm on the way of development client side.
I'm using Netbeans. How I can generate WADL file? And after I ...
1
vote
1answer
307 views
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?
1
vote
2answers
159 views
WADL applications?
I have read the book "Restful Web services". In that book it described WADL and it's purpose to describe RESTful web applications.
That book was written in 2007, and at that time there weren't many ...
1
vote
2answers
1k views
Restful service in .NET with WADL instead of WSDL
I used WCF to create a restful web service in .NET, by means of a .svc file. The web application automatically produces a WSDL file. AFAIK, the WADL is more natural for a restul web service.
How ...
0
votes
0answers
29 views
0
votes
0answers
28 views
Adding new REST web service to NetBeans
I'm using NetBeans 7.0.1 and when I try adding the API address of this REST web service:
http://idi.fundacionctic.org/mobSerenoaWS/application.wadl
it just shows error "Cannot determine if the ...
0
votes
0answers
16 views
Cannot access WADL error in restful services
I have just started learning how to develop Restful web services and am using Netbeans 6.5.1 with glassfish v3 to build a webapp using Restful web services from database. I keep getting this error ...
0
votes
0answers
62 views
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 ...
0
votes
0answers
15 views
How to define variable Resource such as /colours/{colour} in a WADL?
Is it possible to define the fact that you are expecting a {colour} in the /colours/{colour} URL as part of a WADL? If so, how would you do it? If not, isn't this a huge oversight of the spec?
Why ...
0
votes
2answers
71 views
RESTful Webservice time value issues
I have created a RESTful webservice and this webservice uses a mysql database. This was done following a howto using the Netbeans IDE.
All is working fine except for one little thing.
There is one ...
0
votes
0answers
109 views
“Cannot access WADL” message occurs when ever i try to test RESTful webservice?
when I test service, i get Cannot access WADL message on my IE9 browser and on Firefox 5, I don't get this error. But in both case i can't access left pane where the services should be listed. What is ...
0
votes
0answers
99 views
How do I generate a list of what resources are available in HTML in Jersey?
I would like for my web service to provide a handy reference to all available end points from each resource root that is requested with a html content type. It seems like all the data needed to ...
0
votes
1answer
664 views
How to wadl2java these days?
I have real difficulty finding commandline tool to convert WADL to java. No matter how much I try to google, follow blogs or java.net doc, there is no real download link. (links are broken or ...
0
votes
0answers
100 views
Problem using wadllib in python for WADL file that has nested resources
Does anyone have any experience with wadllib for python?
To be more specific, I'm using version 1.2.0 of it in Debian Lenny. I downloaded the sources and installed it using setup.py install command.
...
0
votes
0answers
85 views
Global/Common params in a WADL
In a WADL, a can have such as:
<resource path="status.{format}">
<param name="format" type="xsd:string" style="template" required="true" default="json">
<option value="xml" ...
0
votes
1answer
144 views
Restful services descriptor WADL or other way to identify method type?
How can I identify a web service supports rest behavior or not? And if a service supports Rest then would that service expose any descriptor(e.g WADL) through which I can get method name, method ...
0
votes
1answer
307 views
REST WADL: Any style guidelines or good examples?
There are plenty of excellent examples and guidelines (see ref [1]) for writing good javadoc for Java code
We are documenting our REST interfaces via WADL using Restlet
...
0
votes
1answer
488 views
WADL: complex type from external xsd
I need to test authentication procedure using the wadl file below:
<application xmlns="http://research.sun.com/wadl/2006/10"
xmlns:sis="http://sis.thecompany.com/" >
<grammars>
...
0
votes
1answer
129 views
REST represenation for xml
i'm building a REST api and debating what format should I use for the xml representation.
i know it can be one defined in house but there are also lots for formats.
wadl looks interesting but there ...
0
votes
1answer
112 views
Representing arbitrary hierarchies in WADL
I am modeling a REST API and part of the API will represent resources that are
organized into an arbitrary hierarchy of nodes with values and sub-nodes (kind
of like a file system or the windows ...
0
votes
1answer
454 views
REST api ambiguity and WADL
I have a REST api that's ambiguous, something like (this isn't the specific problem, just gives an idea of the ambiguity):
/toplevel/${customer_number}/some_command/more stuff
...