I have a war using Spring Boot (normal J2EE war) deployed to Tomcat, I'm
using CXF 3.1.12 for the SOAP services.
The services work fine but there is no CXF generated landing/home page that
lists all the CXF SOAP services. How can I get this page? (Or if there is
I don't know the URL)
I do not have any web.xml file, all SOAP endpoint configuration is done via
WebServiceConfig class, typical endpoint is like:
@Bean
public TipMessagePortType tipMessagePortType()
{
return new TipMessageImpl(createEventMsgsFactory());
}
@Bean(name = "tipMessageEndpoint")
public Endpoint tipMessageEndpoint()
{
SpringEndpointImpl endpoint = new SpringEndpointImpl(bus,
tipMessagePortType());
endpoint.setWsdlLocation("/wsdl/tipmsg/TipMessage.wsdl");
endpoint.publish("/TipMessage");
return endpoint;
}
How can I configure this so there is a CXF home page that lists all the
services?
-Dave