How can I identify a web service supports rest behavior or not? And if a service supports Rest then would that service expose any descriptor(e.g WADL) through which I can get method name, method parameters and method type (e.g. Get, put, post...)?

WSDL 2.0 supports Rest but currently no web service supporting it.

Thanks, Asif

link|improve this question
feedback

1 Answer

if you use the HTTP OPTIONS method against an url, it should tell you what methods it supports.

link|improve this answer
I just have a URL of a web service which I will get at run time from user, so I have to implement a mechanism that can identify a web service protocols(e.g. SOAP, REST) which it support and make a request dynamically to call the service. – Asif Apr 4 '11 at 14:49
@Asif REST isn't a protocol, you can't detect it. You can detect SOAP by looking at the returned content type. – Darrel Miller Apr 4 '11 at 16:01
feedback

Your Answer

 
or
required, but never shown

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