Generate WSDL from java class\source

后端 未结 3 1639
离开以前
离开以前 2020-12-06 06:23

I have a package with \"logic\" classes(like CheckAuthenticationDataLogic.java, GetVocabulariesLogic.java). And another class - ApiService.java is used to generate wsdl. Api

相关标签:
3条回答
  • 2020-12-06 06:39

    The Metro (http://metro.java.net/) web service stack provides a tool (wsgen) to generate WSDL from annotated Java.

    0 讨论(0)
  • 2020-12-06 06:48

    Axis2 is another alternative, specifically the java2wsdl command/plugin

    0 讨论(0)
  • 2020-12-06 07:00

    The wsgen tool generates JAX-WS portable artifacts used in JAX-WS web services. Note that you do not have to generate WSDL at the development time as JAXWS runtime will automatically generate a WSDL for you when you deploy your service.

    You might want to check the JAX-WS RI documentation and especially the samples (pay a special attention to the fromjava sample).

    0 讨论(0)
提交回复
热议问题