From dev-return-21166-apmail-directory-dev-archive=directory.apache.org@directory.apache.org Sun Sep 02 14:09:41 2007 Return-Path: Delivered-To: apmail-directory-dev-archive@www.apache.org Received: (qmail 94132 invoked from network); 2 Sep 2007 14:09:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Sep 2007 14:09:40 -0000 Received: (qmail 44851 invoked by uid 500); 2 Sep 2007 14:09:35 -0000 Delivered-To: apmail-directory-dev-archive@directory.apache.org Received: (qmail 44809 invoked by uid 500); 2 Sep 2007 14:09:35 -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 44791 invoked by uid 99); 2 Sep 2007 14:09:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Sep 2007 07:09:35 -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; Sun, 02 Sep 2007 14:09:39 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 0CCBE714159 for ; Sun, 2 Sep 2007 07:09:19 -0700 (PDT) Message-ID: <8043507.1188742159048.JavaMail.jira@brutus> Date: Sun, 2 Sep 2007 07:09:19 -0700 (PDT) From: "Stefan Seelmann (JIRA)" To: dev@directory.apache.org Subject: [jira] Created: (DIRSERVER-1055) Reading cn=schema doesn't return all requested attributes MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Reading cn=schema doesn't return all requested attributes --------------------------------------------------------- Key: DIRSERVER-1055 URL: https://issues.apache.org/jira/browse/DIRSERVER-1055 Project: Directory ApacheDS Issue Type: Bug Affects Versions: 1.5.1 Reporter: Stefan Seelmann When performing the following search the attributes createTimestamp and modifyTimestamp are not in the search result, although requested: $ ldapsearch -x -h localhost -p 10389 -D "uid=admin,ou=system" -w "secret" -b "cn=schema" -s base "(objectClass=subschema)" objectClasses attributeTypes ldapSyntaxes matchingRules matchingRuleUse createTimestamp modifyTimestamp | grep "modifyTimestamp:" However when performing this search the modifyTimestamp is returned. Note the additonal "+" in the list of returning attributes: $ ldapsearch -x -h localhost -p 10389 -D "uid=admin,ou=system" -w "secret" -b "cn=schema" -s base "(objectClass=subschema)" objectClasses attributeTypes ldapSyntaxes matchingRules matchingRuleUse createTimestamp modifyTimestamp "+" | grep "modifyTimestamp:" modifyTimestamp: 20070901074516Z -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.