Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 49938 invoked from network); 2 Feb 2007 15:05:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Feb 2007 15:05:35 -0000 Received: (qmail 70247 invoked by uid 500); 2 Feb 2007 15:05:38 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 70214 invoked by uid 500); 2 Feb 2007 15:05:38 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 70201 invoked by uid 99); 2 Feb 2007 15:05:38 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2007 07:05:37 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: 216.86.168.178 is neither permitted nor denied by domain of geir@pobox.com) Received: from [216.86.168.178] (HELO mxout-03.mxes.net) (216.86.168.178) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2007 07:00:45 -0800 Received: from [192.168.1.104] (unknown [67.86.14.213]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id C493451986 for ; Fri, 2 Feb 2007 10:00:16 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <906dd82e0702020158g58a2409bpde724ff1b68cd957@mail.gmail.com> References: <906dd82e0702020158g58a2409bpde724ff1b68cd957@mail.gmail.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <3C1D1654-809D-4AF7-B9C4-919A23ED47B8@pobox.com> Content-Transfer-Encoding: 7bit From: "Geir Magnusson Jr." Subject: Re: [classlib][luni] "ant fetch-depends" on Harmony JDK failure Date: Fri, 2 Feb 2007 10:00:14 -0500 To: dev@harmony.apache.org X-Mailer: Apple Mail (2.752.3) X-Virus-Checked: Checked by ClamAV on apache.org This patch bugs me because it seems like a bit of a hack around a problem elsewhere, although it could simply be because I don't know what I'm talking about :) Anyway, I guess my problem boils down to this : The code now is : socket.connect(proxy.address(), .... ); and the new code is (in shorthand ) : socket.connect( new InetSA(proxy.getHostName(), proxy.getPort ()), ....); why doesn't proxy.address() return a resolved SocketAddress - IOW, do the same thing as this patch is doing? geir On Feb 2, 2007, at 4:58 AM, Mikhail Loenko wrote: > hi > > I'm trying to build Harmony classlib on Harmony JDK (linux/ia32) > > "ant" and "ant clean" work just fine :) > > "ant -v fetch-depends" prints the following: > > java.net.ConnectException: people.apache.org/140.211.11.9:80 - > Connection timed > > please review my patch at > http://issues.apache.org/jira/browse/HARMONY-3113 > > Thanks, > Mikhail