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 there are fundamental flaw in its design, is it not a good match for the culture that typically surrounds RESTful web services, or is it something else entirely?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

I think the main reason why WADL doesn't gain popularity is that it might bring back to life all those problem we had with SOAP and WSDL. To me, the interoperability aspect is the single most important aspect of web-services.
By following the RESTful way of using pure HTTP standards you get interoperability "for free". Once you need a document to describe the services, there will be different client frameworks (or different servers frameworks) that will interpret this document differently. Once different frameworks auto-generate code from WADL you will have to deal with the interoperability problems again.

The lack of standards is the weakness and strength of the RESTful way, let's give the simple approach a chance. (even though we really enjoy automatic code generation :-) )

link|improve this answer
2  
I don't agree that interop is "free" when using REST. REST doesn't magically provide interop, not in the way a WADL would hope to provide. I recognize that there are interop challenges (some call it "impedance mismatch") when mapping from, say, an XSD into a Java class, or from XSD to C#. But that is not necessarily true of all such mapping approaches. XSD in particular is waaaay more complicated than it needs to be in order to support the 80% interop case for web services. If WADL is appropriately modest in its goals, it could provide real value, with low risk of pitfalls. – Cheeso Jan 21 '10 at 21:57
2  
I agree with Cheeso, REST doesn't provide anything 'for free'. You still have 'some work' to do to ensure you are dealing with apples (and not oranges) particularly with data payloads (whether HTTP is there or not). REST also imposes issues when mapping to different 'languages/tool-set' targets. This introduces even further opportunities for impedance mismatch between two endpoints (particularly when each endpoint are not under a single point of control). – gto406 Apr 13 '11 at 19:14
feedback

Your Answer

 
or
required, but never shown

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