Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to document Java Web service API [closed]

I have a Java web service and want to document the public API so the documentation is able to be browsed from the web from the same URL as the web service. How is this usually done?

like image 536
Kenoyer130 Avatar asked Mar 23 '26 12:03

Kenoyer130


1 Answers

There is wsdldocumentation tag:

<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Your Documentation</wsdl:documentation>
like image 196
YoK Avatar answered Mar 26 '26 04:03

YoK