How to view available web services on Tomcat?

Two applications are deployed in our project, one each for JBoss and Tomcat (using the proprietary FAST infrastructure). The following URL lists the available web services / jmx console on JBoss:

Web Services: = http: // server: port / jbossws

JMX console: = http: // server: port / jmx-console

The same format does not work for Tomcat. Is there another module (in bold in the URLs above) that I can use to view available web services on Tomcat?

+4
source share
1 answer

No

There is http://server:port/manager/html that allows you to manage deployed WAR archives. Each WAR archive can contain web services using different stacks. For instance. CXF or Spring-WS. Each of these stacks has different methods for listing the available services.

For example, CXF allows you to enter the primary URL associated with the CXFServlet , and you will get the services available.

+1
source

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


All Articles