i have developed a Java Web service using CXF, and Spring. due to security reasons, i would like to hide the WSDL, though the WS will still be available. is there a way to do that using CXF?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could add a servlet filter in web.xml that stops ?wsdl requests from being processed:
The doFilter() method would look like this:
|
|||||
|