I'm a newcomer to CXF, so bear with me. I have a cxf service (code first using spring) that I wish to expose three different ways:
1. soap over http (works) 2. Rest (works) 3. soap over jms (not so much) I am using the servlet transport for the http endpoints, which is configured under /services. So, when I go to http://localhost:8080/myservice/services?, I get wsdl and wadl links for the http transport. How do I get the wsdl link for the JMS transport? Ideally, my users would see the jms endpoint in the wsdl along with the soap over http endpoint. Is there a way to accomplish this without resorting to wsdl first development? Thanks, Jeff Costello
