Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 19944 invoked from network); 3 May 2002 11:53:36 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 3 May 2002 11:53:36 -0000 Received: (qmail 3934 invoked by uid 97); 3 May 2002 11:53:35 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 3851 invoked by alias); 3 May 2002 11:53:34 -0000 Delivered-To: jakarta-archive-commons-dev@jakarta.apache.org Received: (qmail 3816 invoked by uid 97); 3 May 2002 11:53:34 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 3802 invoked by uid 98); 3 May 2002 11:53:32 -0000 X-Antivirus: nagoya (v4198 created Apr 24 2002) Message-ID: <921E60ADEB30D84EACA350AD31A1FD7506E4B3@chiex02.britannica.net> From: "Waldhoff, Rodney" To: "'commons-dev@jakarta.apache.org '" Subject: RE: HttpClient Hanging on executeMethod(HttpMethod) Date: Fri, 3 May 2002 06:53:28 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) List-Subscribe: Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C1F299.238AEDB0" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C1F299.238AEDB0 Content-Type: text/plain; charset="iso-8859-1" Try turning on Http Client's logging to get a better sense of what's going on: 1. Set the system property: httpclient.log=org.apache.commons.httpclient.log.SimpleLog via -D on your java command line or something similiar 2. Create a file in your classpath called simplelog.properties, and add the line: httpclient.simplelog.log.httpclient.wire=info Now you should see the http conversation dumped out to standard out. This might provide a better idea on where the problem is happening. You could also add this property: httpclient.simplelog.log.org.apache.commons.httpclient=debug which will give you pretty verbose debugging messages from various HTTP Client classes. Add lines like this: httpclient.simplelog.log.=warn to trim out the categories that aren't helping you. (If you know how to use/prefer Log4J, set the property httpclient.log=org.apache.commons.httpclient.log.Log4JCategoryLog, and configure log4j as you normally would, or don't set the httpclient.log property at all and simply have log4j in your classpath). ------_=_NextPart_001_01C1F299.238AEDB0--