We do have a bunch of web services developed in Java running in our various environments (on Talend).

During the development phase, we tend to write the wsdl first and use wsdl:documentation and xsd:annotation/xsd:documentation as much as possible to document the service, operation, parameters, ... We happily use CXF to generate the Java plumbing.

We keep a list of all those deployed web services in a LDAP directory with their respective URL. The list is use by a documentation engine developed in-house which pulls all the WSDL, render them to media wiki and then publish the result to our confluence install.

We realized that the original documentation vanishes during the process. After investigation, we understood that CXF will entirely rebuild the WSDL it serves to client accessing the http://myserver:8888/myservice?wsdl URL from the service classes but does not generate the documentation.

Before starting hacking CXF, is there a best practice? It is important for us to keep our WS self-contained for obvious (well, we believe that) coherence reason.

N.B. We've already written a CXF interceptor to serve the original WSDL but as we do have import in, it does not work well.

Thanks

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.