I need to look at the raw HTTP requests and responses.
I've setup the following properties:
System.setProperty("org.apache.commons.logging.Log",
"org.apache.commons.logging.impl.SimpleLog");
System.setProperty("org.apache.commons.logging.simplelog.showdatetime",
"true");
System.setProperty(
"org.apache.commons.logging.simplelog.log.httpclient.wire", "trace");
System.setProperty(
"org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient",
"trace");
This is giving out a lot of trace messages but how do I get to the see the HTTP
requests and responses?
Thanks
Raj