Return-Path: Delivered-To: apmail-jakarta-httpclient-user-archive@www.apache.org Received: (qmail 14854 invoked from network); 15 Feb 2006 20:52:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Feb 2006 20:52:30 -0000 Received: (qmail 21877 invoked by uid 500); 15 Feb 2006 20:52:29 -0000 Delivered-To: apmail-jakarta-httpclient-user-archive@jakarta.apache.org Received: (qmail 21860 invoked by uid 500); 15 Feb 2006 20:52:28 -0000 Mailing-List: contact httpclient-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: "HttpClient User Discussion" Reply-To: "HttpClient User Discussion" Delivered-To: mailing list httpclient-user@jakarta.apache.org Received: (qmail 21849 invoked by uid 99); 15 Feb 2006 20:52:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Feb 2006 12:52:28 -0800 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [207.99.47.54] (HELO host54a.simplicato.com) (207.99.47.54) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Feb 2006 12:52:27 -0800 Received: from localhost (localhost.simplicato.com [127.0.0.1]) by host54a.simplicato.com (Postfix) with ESMTP id 48CF76C080C for ; Wed, 15 Feb 2006 15:52:02 -0500 (EST) Received: from host54a.simplicato.com ([127.0.0.1]) by localhost (host54a.simplicato.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 58192-02 for ; Wed, 15 Feb 2006 15:52:02 -0500 (EST) Received: from mail.urbancode.com (localhost.simplicato.com [127.0.0.1]) by host54a.simplicato.com (Postfix) with SMTP id 09E0D6C0801 for ; Wed, 15 Feb 2006 15:52:02 -0500 (EST) Received: from 66.93.12.67 (SquirrelMail authenticated user jwa@urbancode.com) by mail.host54a.simplicato.com with HTTP; Wed, 15 Feb 2006 15:52:02 -0500 (EST) Message-ID: <36580.66.93.12.67.1140036722.squirrel@mail.host54a.simplicato.com> In-Reply-To: <43F11775.3000302@apache.org> References: <48566.66.93.12.67.1139870100.squirrel@mail.host54a.simplicato.com> <1139870736.9612.33.camel@localhost.localdomain> <50182.66.93.12.67.1139871914.squirrel@mail.host54a.simplicato.com> <43F11775.3000302@apache.org> Date: Wed, 15 Feb 2006 15:52:02 -0500 (EST) Subject: HttpClient & bad_record_mac error From: jwa@urbancode.com To: "HttpClient User Discussion" User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal X-Virus-Scanned: by amavisd-new at simplicato.com X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello, I'm still trying to get httpClient to work with our intranet server over an https connection. I can connect and load pages via firefox, curl, and seemingly all other methods of retrieving a web page, but when i connect with httpClient, i get "javax.net.ssl.SSLException: Received fatal alert: bad_record_mac"... I'll be happy to provide any more info that may help. Any suggestions or tips on how to fix this or where the problem may lie would be appreciated. (and this does occure w/ httpClient 3.0) Server version: Apache/2.0.50 OpenSSL 0.9.7d ------------------ HttpClient httpclient = new HttpClient(); String url = "https://" + ourintranetdomain + ":443"); url += "/dir/"; GetMethod httpget = new GetMethod(url); try { httpclient.executeMethod(httpget); System.out.println(httpget.getStatusLine()); } catch (Exception e){ e.printStackTrace(); }finally { httpget.releaseConnection(); } -------------------- -Jeff --------------------------------------------------------------------- To unsubscribe, e-mail: httpclient-user-unsubscribe@jakarta.apache.org For additional commands, e-mail: httpclient-user-help@jakarta.apache.org