How to achieve something like that:
@WebService(endpointInterface = "ru.citc.techtest.cxfconcepts.HelloWorld")
public class HelloWorldImpl implements HelloWorld {
public String sayHi(DOMSource xml) {
return "Hello";
}
}
I need a raw XML for processing (SAX or DOM). In same time I want to leverage existing method routing of JAX-WS.(I use Apache CXF) Returned value may be any type.