Is there a way to get schema information from a RESTful web service? For example, a soap service has WSDL that we can look at and create any proxy classes. I was wondering if there is a way to get that information from a restful web service.
Asked
Active
Viewed 3,283 times
2 Answers
0
Is there a way to get schema information from a RESTful web service?
In general, no. REST doesn't include metadata about its payload - that's not the purpose of this architectural style.
Such metadata shouldn't be needed if the web service is truly REST conformant.
You will need to look at the payloads and documentation.

Oded
- 489,969
- 99
- 883
- 1,009
-
How about this: [Use IAPIExplorer To List Your ASP.NET Web APIs](http://www.infoq.com/news/2012/05/iapiexplorer). – Skadoosh Jan 07 '13 at 15:02
-
@KO. - What about it? Looks like it fits your needs, though standard, it ain't. – Oded Jan 07 '13 at 15:05
0