From harmony-commits-return-5655-apmail-incubator-harmony-commits-archive=incubator.apache.org@incubator.apache.org Fri Jun 23 01:56:59 2006 Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 14081 invoked from network); 23 Jun 2006 01:56:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Jun 2006 01:56:59 -0000 Received: (qmail 78461 invoked by uid 500); 23 Jun 2006 01:56:58 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 78368 invoked by uid 500); 23 Jun 2006 01:56:58 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 78352 invoked by uid 99); 23 Jun 2006 01:56:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:56:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Jun 2006 18:56:57 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7E861410008 for ; Fri, 23 Jun 2006 01:55:30 +0000 (GMT) Message-ID: <21524682.1151027730515.JavaMail.jira@brutus> Date: Fri, 23 Jun 2006 01:55:30 +0000 (GMT+00:00) From: "Andrew Zhang (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Commented: (HARMONY-623) java.net.ServerSocket constrcutor should not throw IOException if "socksProxyHost" property is set. In-Reply-To: <27962866.1150788869774.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-623?page=comments#action_12417400 ] Andrew Zhang commented on HARMONY-623: -------------------------------------- Hello George, The fix looks fine, many thanks! Best regards, Andrew > java.net.ServerSocket constrcutor should not throw IOException if "socksProxyHost" property is set. > --------------------------------------------------------------------------------------------------- > > Key: HARMONY-623 > URL: http://issues.apache.org/jira/browse/HARMONY-623 > Project: Harmony > Type: Bug > Components: Classlib > Reporter: Andrew Zhang > Assignee: George Harley > Priority: Minor > Attachments: luni.src.diff > > Harmony java.net.ServerSocket constrcutor throws IOException if "socksProxyHost" property is set while RI doesn't. > Following test reproduces the bug. > public void test_ConstructorI_SocksSet() throws IOException { > ServerSocket ss = null; > Properties props = (Properties) System.getProperties().clone(); > try { > System.setProperty("socksProxyHost", "127.0.0.1"); > System.setProperty("socksProxyPort", "12345"); > ss = new ServerSocket(Support_PortManager.getNextPort()); > } finally { > System.setProperties(props); > if (null != ss) { > ss.close(); > } > } > } > Test result: > RI passes but Harmony fails. > I'll try to fix the problem. Thanks. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira