up vote 7 down vote favorite
6
share [g+] share [fb]

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 resources, can just use it from browser or REST client. That's the main idea of a RESTful architecture. This architecture allows services on the internet. So why does this architecture need WADL. What does WADL do that standard HTTP doesn't? Why does WADL need to exist?

link|improve this question

57% accept rate
I request drive-by downvote explanation. – Jimmy Aug 21 '09 at 21:33
feedback

6 Answers

up vote 3 down vote accepted

WADL sucks - stop reading about it and move on. There's a reason it hasn't really caught on.

link|improve this answer
I do not see any alternatives for describing inputs to my services. How would you go about to give info to other devs when complex object hierarchies are required as input? – oligofren Jul 9 '11 at 5:29
Documentation. It's that simple. – Gandalf Jul 12 '11 at 12:54
feedback

Using WADL implies that you just might be gracious enough to actually define the data / documents you are passing back and forth. Say you are passing some XML fragments, they might actually be part of a defined schema.

Whether or not you use the DL to generate code is not very important to me. What matters, in my subjective opinion, is that it is important to have a formal agreement on interfaces between business partners. Even if what is passed is obvious, it helps to identify who has to fix what later if somebody changes the previous interface.

Data format is just as much a part of an interface as verb names.

link|improve this answer
4  
Using REST requires that you define the data / documents you are passing back and forth. The problem with WADL is that it also tries to define the end-points which should not be part of the API definition. – Darrel Miller Aug 24 '09 at 17:13
Derrel, I don't know of a single web service I have ever written a client for, that didn't have a single endpoint that it was used with. – Brill Pappin Oct 26 '11 at 21:19
feedback

WADL appeals to people coming from the SOAP world where it is common to use a code generator to create client side code based on the WSDL. I don't think that mechanism is useful in REST as it creates client code that is coupled to server endpoints.

I believe that if you properly define your media-types and use hypermedia within those media-types, then it is not necessary to have WADL. The description of the available end-points is contained within the media-type definitions themselves. And if you are now saying to yourself, but application/xml doesn't contain any information about available hyperlinks, then I say BINGO. That's why I don't think application/xml and application/json are appropriate media-types for REST. I'm not saying don't use XML or JSON, just don't use the generic media type name.

The other appeal of WADL is for the purpose of documenting REST services. Unfortunately, it leads developers down the wrong path as WADL attempts to document server-side end points. Documenting a REST services should focus primarily on the media-types. A client developer should be able to write a REST client without knowing any url other than the root url.

link|improve this answer
2  
WADL also appeals to those who have a boss who says you have to have a formal definition in a standard format. I'm not saying it's the best way to do that, just that some times it's useful to "check an organizational box", so to speak. That fact that it's overkill can be lost upon one's boss. However, having the formal def file can save you from being shoved back to the SOAP crack pipe that all the other cool corporate kids are sucking on. – Roboprog Aug 26 '09 at 12:27
1  
@Roboprog Document your media types instead of the end points. There are plenty of good examples at the IANA registry. Also, the Sun Cloud API is a good example. You have to convince your boss that documenting the endpoints is a bad idea for the future. – Darrel Miller Aug 26 '09 at 14:07
It's also handy for developers who actually have more to do that write client code all day. – Brill Pappin Oct 26 '11 at 21:16
feedback

WADL allows you to generate code, tests and documentation. Actually there are few very useful tools utilizing WADL, you can see some examples here. The problem with the "pure" REST, as described in Fielding's dissertation, is writing clients supporting Hypermedia (imagine writing Java Swing-based client application for example). With WADL this task is completely automated, and it's a huge advantage in my view. Testing becomes a way easier too.

link|improve this answer
feedback

Before I give my explanation, let me say that most pure REST extremists will deride it to the ends of the earth. I don't agree with them, as i'd rather get something done, but just so you know.

WADL is a description of a web service API, a little like WSDL is for SOAP type web services, that is designed to be more in tune with RESTful interfaces (something WSDL is poor at).

It's primary usage in my experience is to allow you to generate client code that can call the service (handy if it's a very large API, which literally saves hours of work). It also serves the purpose of documenting a REST-like interface.

link|improve this answer
1  
Sure, that's a good answer. The resistance seems to be from hardcore SOAP folks, who don't want REST at all, and some hardcore REST cowboys, who don't want any extra make-work. Having a formal doc is a good fig leaf to have in an "enterprise", even if it's a waste of time for a tiny API in a start up. – Roboprog Oct 27 '11 at 23:05
In my experience, there are three main reasons for something like WADL: - a lot of good developers don't know REST. - When your on the clock, having a document or API speeds things up enormously. - You can never assume someone else has implemented a REST call the same way you would. Even REST evangelists can't agree :) I've even run across cases where an environment won't allow a DELETE or PUT call to execute, so you get a REST-like interface that only uses GET and PUT calls... and then the documentation become crucial. – Brill Pappin Oct 31 '11 at 18:51
I'm sure you meant GET and POST, as in faking PUT and DELETE with funky POST options. Alas... – Roboprog Nov 2 '11 at 17:41
Yes, I did mean GET/POST :) – Brill Pappin Nov 2 '11 at 22:06
feedback

REST specifies nothing about WADL.

link|improve this answer
I think so, but Wadl can use inside of the rest for example youtube.com/watch?v=cDdfVMro99s . It seems that wadl supports clients to use server's function. And clients can just need to have parameters and the name of the function. – Iguramu Aug 21 '09 at 19:41
1  
What you just described to me sounds like RPC, not REST. – aehlke Aug 21 '09 at 20:45
feedback

Your Answer

 
or
required, but never shown

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