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?
Asked
Active
Viewed 754 times
1 Answers
1
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?

Community
- 1
- 1

Ross Taylor-Turner
- 3,687
- 2
- 24
- 33
-
Thanks Ross I could access wadl document by "application.wadl" paramter. I'm using my own rsdl document that generated by Java.Class definitions. It seems like wadl, I can change my structure in the future.Thanks for reply again. – Haktan Aydın Oct 31 '14 at 12:31