Hi Stefan,

You need to set the system properties before you reference any of the commons logging classes. Also, if you have Log4j on your classpath the system properties will be ignored, and the log4j config will be used instead. Please take a look at the commons logging site for more config info <http://jakarta.apache.org/commons/logging/>.

Mike

On Feb 17, 2004, at 3:46 AM, Stefan Bachem wrote:

Hello

To ensure that the sessions cookie (assuming one is being used) is sent
to the post you just need to use the same instance of HttpClient for
both posts. You can verify that the session cookie is being sent by
looking at the wire log
<http://jakarta.apache.org/commons/httpclient/logging.html>.

I try to use this but so far it doesn't work for me. I followed the steps in the docs, Compilation is succesfull but at runtime there is no Logging Output.

I added this to my Programm:

------
private static Log log = LogFactory.getLog(myhttp.class);

System.setProperty("org.apache.commons.logging.Log","org.apache.commons .logging.impl.WireLog");
System.setProperty("org.apache.commons.logging.wirelog.log.httpclient", "trace");
System.setProperty("org.apache.commons.logging.wirelog.log.httpclient.w ire","debug");
------


also some Settings similar like this had no Effect.

Is an functional Example anywhere out there?

ciao
Stefan:wq

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to