I'm having a hard time finding the solution to this, perhaps because my terminology is wrong.What I would like to do is be able to log the RAW xml returned when I call \[code\].get()\[/code\] on a JAXRS WebClient.The current setup I have does the unmarshalling without any problems when I perform this:\[code\]MyObject result = (MyObject) client.get(MyObject.class);\[/code\]But, I'd like to see what is actually returned by the server in the form of XML to System.out while I debug.