Return-Path: Delivered-To: apmail-directory-dev-archive@www.apache.org Received: (qmail 94336 invoked from network); 12 May 2006 01:29:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 May 2006 01:29:56 -0000 Received: (qmail 59934 invoked by uid 500); 12 May 2006 01:28:43 -0000 Delivered-To: apmail-directory-dev-archive@directory.apache.org Received: (qmail 53759 invoked by uid 500); 12 May 2006 01:27:42 -0000 Mailing-List: contact dev-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache Directory Developers List" Delivered-To: mailing list dev@directory.apache.org Received: (qmail 53420 invoked by uid 99); 12 May 2006 01:27:37 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 May 2006 18:27:37 -0700 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: 212.27.42.28 is neither permitted nor denied by domain of elecharny@gmail.com) Received: from [212.27.42.28] (HELO smtp2-g19.free.fr) (212.27.42.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 May 2006 16:18:48 -0700 Received: from [192.168.0.1] (vol75-3-82-66-216-176.fbx.proxad.net [82.66.216.176]) by smtp2-g19.free.fr (Postfix) with ESMTP id 90CC06EE7C for ; Fri, 12 May 2006 01:18:27 +0200 (CEST) Message-ID: <4463C687.2090006@gmail.com> Date: Fri, 12 May 2006 01:19:35 +0200 From: Emmanuel Lecharny Reply-To: elecharny@iktek.com User-Agent: Mozilla Thunderbird 1.0.7 (X11/20050923) X-Accept-Language: fr, en MIME-Version: 1.0 To: Apache Directory Developers List Subject: Attributes and DN question References: <5F1E77C2-8F2A-497C-903B-AE9FC4CA8C17@jaguNET.com> <6.0.0.22.0.20060511193730.03fda480@mail.qos.ch> <4463928A.40306@gmail.com> In-Reply-To: <4463928A.40306@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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 Hi all, I'm trying to figure out if code like : ... Attributes entry = ( Attributes ) i.next(); if ( entry.get( "dn" ) == null ) { throw new ConfigurationException( "Test entries must have DN attributes" ); } ... makes sense or not. In my mind, Attributes should not containes "dn", because "dn" is already stored elswhere. Am I wrong ? wdyt ? Emmanuel.