Reputation: 1075
I know two types of webservice.
SOAP webservice can be described in WSDL. So restful webservice how to describe, can let people know how to call.
I'm working with documents. Is there anything else like WSDL.
Upvotes: 1
Views: 372
Reputation: 12221
The Bad News:
There is no official way to document REST as you are describing. Also keep in mind a WSDL is used to generate code artifacts as well as document the service.
The good news:
However you can look at the following four options:
The Ugly News:
Since there is no "official" way some clients will be comfortable with RAML some with Swagger, its is going to be difficult to cater for everyone however this is a minor point.
Upvotes: 2