Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 84627 invoked from network); 11 May 2007 10:24:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 May 2007 10:24:36 -0000 Received: (qmail 29333 invoked by uid 500); 11 May 2007 10:24:42 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 29304 invoked by uid 500); 11 May 2007 10:24:42 -0000 Mailing-List: contact commits-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 commits@harmony.apache.org Received: (qmail 29293 invoked by uid 99); 11 May 2007 10:24:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 May 2007 03:24:42 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 May 2007 03:24:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 60475714065 for ; Fri, 11 May 2007 03:24:15 -0700 (PDT) Message-ID: <32094686.1178879055391.JavaMail.jira@brutus> Date: Fri, 11 May 2007 03:24:15 -0700 (PDT) From: "Kelvin Ye (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-3841) [classlib][jndi] the get(int) method of class LdapName returns different result from RI MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [classlib][jndi] the get(int) method of class LdapName returns different result from RI --------------------------------------------------------------------------------------- Key: HARMONY-3841 URL: https://issues.apache.org/jira/browse/HARMONY-3841 Project: Harmony Issue Type: Bug Components: Classlib Environment: Linux and Windows Reporter: Kelvin Ye If we add "\\ " either in front of or behind the attribute value to initialize LdapName, we wil get different result from RI. Please see the sample test code below: public void testGet() throws Exception { String test1 = "t=\\ test\\ "; LdapName ln1 = new LdapName(test1); System.out.println(ln1.get(0)); } We will output "t= test ", but RI outputs "t=\ test\ ". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.