Hi to all,
I have a problem I can't understand related to the execution of HttpClient 4 
within a web application running in Tomcat + Struts2.

I create an HTTP client for a specific site that uses basic authentication over 
HTTPS. 
While execute my client from a console application,  it works properly. 
When I try to use the client from within the web application I always get an 
HTTP 301 result code from the web server.

I have no access to the server logs.

I try to enable the trace using these  instruction:

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.org.apache.http.wire",
 "DEBUG");
System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.http.impl.conn",
 "DEBUG");
System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.http.impl.client",
 "DEBUG");
System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.http.client",
 "DEBUG");
System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.http", 
"DEBUG");

The trace work when I invoke the client from within the console application, 
instead nothing is logged when the client is invoked from within the web 
application.

I try to use fiddler to see what travel on the wire but there are problem with 
the HTTPS.

There is some known issue with this scenario?

Thanks

Ciao

Emiliano Carlesi

Email: emiliano.carl...@itattitude.com
Lync: emiliano.carl...@itattitude.com
Mobile: +39 3487837153
Phone: +39 0650939115

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscr...@hc.apache.org
For additional commands, e-mail: httpclient-users-h...@hc.apache.org

Reply via email to