Hi, I'm still looking for a way to get access to the dom object or the character stream of a pojo web service generated from a wsdl.
A method in my web service looks like this: public DefaultResponse registerCustomer(@WebParam(partName = "parameters", name = "registerCustomerRequest", targetNamespace = "http://bla.com/") RegisterCustomerRequest parameters) { // access the xml nodes through character stream of dom object } Inside this method I would like to access the xml that was sent to the web service. Anybody have any idea how to do this? I tried with stuff like this: Message currentMessage = PhaseInterceptorChain.getCurrentMessage(); But I haven't been able to extract the information I want from the message. Help would be appreciated. Regards, Podiki
