I have deployed some jax-ws webservices in tomcat: web.xml:
...
<servlet>
<servlet-name>WebServiceJaxWs</servlet-name>
<servlet-class>...a bean of mine which overwrites WSServletDelegate</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
...
The web services themselves are defined in the sun-jaxws.xml file
They work great.
Now I need to write jsp that displays all deployed web services. I have access to the servlet context, but I just cannot find a way to access the Servlet WebServiceJaxWs. My idea was to access it and then list the published endpoints.
Any ideas?
source
share