Tagged Questions

5
votes
2answers
931 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
5answers
948 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 ...
2
votes
3answers
164 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 ...
1
vote
1answer
83 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
287 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
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 ...