You can use a packet sniffing program or a proxy based program.
Fiddler is a great proxy based program or there is the JAX-WS WSMonitor tool.
For packet sniffing: Wireshark
To get access to the SOAPMessage, you effectively need to create a class that implements the javax.xml.ws.handler.soap.SOAPHandler interface:
public class MySoapHandler implements SOAPHandler<SOAPMessageContext>
{
@Override
public Set<QName> getHeaders ()
{
...
}
@Override
public boolean handleMessage (final SOAPMessageContext context)
{
...
}
@Override
public boolean handleFault (final SOAPMessageContext context)
{
...
}
@Override
public void close (final MessageContext context)
{
...
}
}
and add this to your service binding's handler chain:
final BindingProvider bindingProvider = (BindingProvider) proxy;
final Binding binding = bindingProvider.getBinding ();
final List<Handler> handlerChain = binding.getHandlerChain ();
handlerChain.add (new MySoapHandler ());
binding.setHandlerChain (handlerChain);
The magic happens in handleMessage/handleFault methods of your custom handler. Once you have a SOAPMessageContext you call the getMessage method and it will return you an instance of javax.xml.soap.SOAPMessage. SOAPMessage is an object representation of the raw soap packet. From here you should be able to reconstruct the XML structure for your purposes.
SOAPMessage API docs