2

every time when i run with the following inside tomcat, cxf build-in jetty is up and serving the request.

<jaxws:endpoint 
    id="wsServer"
    implementor="a.b.c.ServiceImpl"
    address="http://localhost:8080/ws">
</jaxws:endpoint>    

is there any way we have tomcat receiving the request and delegating to cxf?

dma_k
  • 10,431
  • 16
  • 76
  • 128
zhoubig
  • 23
  • 1
  • 4
  • Take a look [here][1] [1]: http://stackoverflow.com/questions/9486835/wadl-generation-tool. It seems relevant to me – vivek Oct 03 '13 at 12:41

1 Answers1

2

UPDATE

You can avoid using embedded Jetty by following this article: Use org.apache.cxf.transport.servlet.CXFServlet in your web.xml and don't forget to import META-INF/cxf/cxf-servlet.xml.

Alternatively (if CXF is not your must) you can:

Community
  • 1
  • 1
dma_k
  • 10,431
  • 16
  • 76
  • 128