Hi, I start up cxf jaxrs with CXFServlet with the following configuration: <servlet> <servlet-name>cxf</servlet-name> <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class> <init-param> <param-name>config-location</param-name> <param-value>/WEB-INF/cxf.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
My question is how do I get each org.apache.cxf.endpoint.Server by their id after cxf is started up? Rice
