How can I list all deployed jax-ws web services?

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?

+3
source share
2 answers

In manual mode, I can analyze yours sun-jaxws.xmland get information from there.

0
source

, - JMX beans JConsole.

0

Source: https://habr.com/ru/post/1727210/


All Articles