Is it possible to get a list of all available web services on a tomcat server?开发者_运维百科
While it looks like this question is probably dead, I'm answering for others future reference. In short, no there is no way to get all of the services available on a server with Spring WS by itself. Spring provides a way for each server to declare its functions via a WSDL. What you need is a UDDI. Spring does not provide that functionality.
A UDDI basically documents all of the web services that have registered with it. Here the Wikipedia entry for it, http://en.wikipedia.org/wiki/Universal_Description_Discovery_and_Integration.
If you got a UDDI installed and registered every service with it, then you'd have a full catalog.
精彩评论