cxfrs - Disable wadl Web Service Definition In CXF -
i using cxf webservice , working perfectly. going expose our webservice public wadl url working public. can see wadl definition of our webservice.
how can disable definition.
e.g. url wadl - http://localhost:8080/webservice/rest?_wadl
try adding jaxrs:server
, hide endpoint exposed jaxrs:server
address
<jaxrs:properties> <entry key="org.apache.cxf.endpoint.private" value="true"/> </jaxrs:properties>
Comments
Post a Comment