I am new to the area of web-services. Is it possible to use WSDL with REST bindings? Or should I use WADL?

link|improve this question

62% accept rate
REST doesn't generally use WSDL. WSDL is for SOAP. What -- exactly -- have you read? Why are you asking this? – S.Lott Jan 22 '11 at 3:22
feedback

1 Answer

It's possible to use a WSDL with REST bindings, but it's really not necessary. The simplistic nature of REST make writing code to use that service very easy. Using a WSDL just adds extra complexity that is just not necessary.

If you're still interested, you can find more information here: http://www.ibm.com/developerworks/webservices/library/ws-restwsdl/

Also, this question may help you: WSDL vs REST Pros and Cons

link|improve this answer
@jmort: in what way can one use WSDL with REST bindings? It doesn't seem to make sense, and I'm considering a downvote, but thought you might know something I don't. – John Saunders Jan 22 '11 at 4:27
@john: read the IBM article, it details how to employ WSDL 2.0 specs against REST bindings. – jro Jan 22 '11 at 18:20
@jro: WSDL 2.0, perhaps, but which consumer of a REST service will know to use a WSDL? – John Saunders Jan 25 '11 at 20:52
@john: Agreed -- REST makes WSDL kind of pointless. Nonetheless, it's still feasible. – jro Jan 25 '11 at 23:01
@jro: that's not what I said. I said that a consumer of a REST service will likely not understand WSDL at all. – John Saunders Jan 25 '11 at 23:04
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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