Hello All,
To add context to the above message from my colleague @Lipika, the above list of available services is generated by the
ServiceListGeneratorServlet class out of the box in
JBoss-4.2.3.ga, however including any servlet declaration in the web.xml of the war file causes Wildfly to throw the following error in Wildfly 29:
Caused by: org.jboss.wsf.spi.WSFException: WFLYWS0066: Servlet class org.apache.cxf.transport.servlet.CXFServlet declared in web.xml; either provide a proper deployment relying on JBossWS or disable the webservices subsystem for the current deployment adding a proper jboss-deployment-structure.xml descriptor to it. The former approach is recommended, as the latter approach causes most of the webservices Jakarta EE and any JBossWS specific functionality to be disabled.
To mitigate the above error we omitted the declaration in the web.xml for the CXFServlet which brings up the services, but the list is not generated and the context path where we are expecting the list to appear throws a 403 error.