Haktan Aydın
Haktan Aydın

Reputation: 591

Restful Web Services generate rsdl document

I'm developing a restful web service app using Java. I want to generate a rsdl document like wsdl document into Soap WS. I read a lot of tutorial about wsdl, wadl and rsdl but I couldn't find a tool to generate rsdl file from web service methos, params, annotations. As a last resort, I think of using Java's MyClass.Class methods. Is there any way to generate this description xml document? What is your suggestions?

Upvotes: 1

Views: 764

Answers (1)

Ross Taylor-Turner
Ross Taylor-Turner

Reputation: 3765

If you are using Jersey, you'll want to look at using the WADL it can generate - https://jersey.java.net/documentation/latest/wadl.html This is analagous to a SOAP WSDL although this is not really the intention with REST services, as you'll see in this related answer REST web service WSDL?

Upvotes: 1

Related Questions