Hi there!
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 " + xml;
}
}
My project is wsdl first and I've strict schemas for my messages. But I'nt need
any Java proxy, because all my processing is XML based (I need a raw XML for
processing SAX or DOM). In same time I want to leverage existing method routing
of JAX-WS or Simple frontends. Please, suggest how.
Thanx in any advice
--
Vladimir