wadl

REST web service WSDL? [duplicate]

眉间皱痕 提交于 2019-11-26 16:05:24
问题 This question already has answers here : RESTful Services - WSDL Equivalent (8 answers) Closed 6 months ago . 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 developing an iPhone app to consume it. My question is simple really, is it possible to create a WSDL or WADL for my REST service and is it necessary? Thanks 回答1: With a good RESTful service

What is the reason for using WADL?

社会主义新天地 提交于 2019-11-26 15:07:12
问题 To describe RESTful we can say that every resource has its own URI. Using HTTP GET, POST, PUT and DELETE, we can operate on these resources. All resources are representational. Whoever wants to use our resources can do so via a 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 offer that standard HTTP does not? Why does WADL need to exist? 回答1: The purpose of WADL