I have an EJB3 stateless session bean providing JAX-WS webservice on WebLogic 10.3.5
@WebService
@Stateless
public class DocumentService {
@Resource
WebServiceContext wsctx;
...
}
I would have to store the whole SOAP requests for later use in the database. All I could find on this topic is that I can get the message with the
SOAPMessageContext.getMessageContext().
method. However it seems that the MessageContext which can be aquired with wsctx.getMessageContext() is not a SOAPMessageContext in weblogic.
Is there a way to get the xml message from the request?
Thanks in advance! Gábor