I have real difficulty finding commandline tool to convert WADL to java. No matter how much I try to google, follow blogs or java.net doc, there is no real download link. (links are broken or obsolete).

What particular vendor, community group is supplying this tool ? Does free download link exist ?

The generated code should be able to reconstruct POJOs from XML responses and survive inside Tomcat 7. Thank you

Answer: (this works only after June 2011):

  • Take Apache-CXF-2.4.1.zip (not any of the earlier versions)
  • Extract it to root folder
  • Take Apache-CXF-2.4.1.src.zip
  • Search for folder named distribution inside src
  • Extract ditribution folder and merge it with no overwrites to root folder
  • goto bin and spot the wadl2java.bat
  • run wadl2java.bat from command prompt
  • continue with no brainer details
link|improve this question

1  
Do you mean WSDL? Axis has a wsdl2java converter. Axis2 is available here: axis.apache.org/axis2/java/core. The Java SDK also comes with wsgen.exe in $JAVA_HOME/bin – Jack Edmonds Jul 21 '11 at 20:24
Thank you, I have no problems with WSDL in SOAP camp. WADL is same sort of language for REST camp. Sort of forgotten minority of devs. Looks for me like abandoned and dying. – RocketSurgeon Jul 21 '11 at 20:27
feedback

1 Answer

up vote 2 down vote accepted

Apache CXF recently added support for WADL-first development of REST services. For more background information on its wadl2java tool, this blog entry by one of the CXF committers should help.

link|improve this answer
Accepted. thank you for pointing to CXF. – RocketSurgeon Jul 22 '11 at 14:10
feedback

Your Answer

 
or
required, but never shown

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