Hello, I am setting up a soap webservice using JAXB starting from a wsdl file that has my operation and data elements defined.
1. create wsdl 2. run wsdl2java 3. implement a SEI When a call is made to my service, it is already marshaled into an object. I attached an interceptor: @InInterceptors(interceptors = "org.apache.cxf.interceptor.LoggingInInterceptor") and I do the payload information logged, but what I want is the request payload to be sent into the webservice operation or be able to get it to send to my other processors. Any ideas? Thanks, Sam.
