Search code examples
javawsdljax-rs

Is it possible to get a WSDL 2.0 from JAX-RS annotated class?


Is it possible to obtain a WSDL 2.0 from a JAX-RS annotated class? Do you know any libraries that do this?

ps. Maybe I can use Apache Axis2, Apache Woden or WSDL4J?

pps. Maybe it's possible to obtain WSDL from a POJO (without any annotations)?


Solution

  • I end up using a combination of the following:

    • Apache Woden 1.0-SNAPSHOT to create WSDL 2.0
    • JAXB to discover data properties
    • Java reflection to discover methods and their params