I have been using the spring's configuration to load the services.   For 
change, I am also trying out the configuration using the CXFServlet init 
parameter as document on page http://cxf.apache.org/docs/servlet-transport.html 
:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd";>
<web-app>

  <servlet>
    <servlet-name>CXFServlet</servlet-name>
    <display-name>CXF Servlet</display-name>
    <servlet-class>
        org.apache.cxf.transport.servlet.CXFServlet
    </servlet-class>
    <init-param>
      <param-name>config-location</param-name>
      <param-value>classpath:beans.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>CXFServlet</servlet-name>
    <url-pattern>/services/*</url-pattern>
  </servlet-mapping>


</web-app>



When using the above configuration, I can't see the list of wsdls that are 
available when opening a browser to http://localhost:7001/webcontext/services/

I have enabled CXF's jmx and I can see the endpoint through jconsole.  Where is 
the page shows the list of wsdls?

Thanks

-Sonam

What

Reply via email to