Return-Path: Delivered-To: apmail-continuum-users-archive@www.apache.org Received: (qmail 35687 invoked from network); 20 Nov 2008 17:40:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Nov 2008 17:40:44 -0000 Received: (qmail 87543 invoked by uid 500); 20 Nov 2008 17:40:52 -0000 Delivered-To: apmail-continuum-users-archive@continuum.apache.org Received: (qmail 87506 invoked by uid 500); 20 Nov 2008 17:40:52 -0000 Mailing-List: contact users-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@continuum.apache.org Delivered-To: mailing list users@continuum.apache.org Received: (qmail 87495 invoked by uid 99); 20 Nov 2008 17:40:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Nov 2008 09:40:52 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of wsmoak@gmail.com designates 209.85.221.20 as permitted sender) Received: from [209.85.221.20] (HELO mail-qy0-f20.google.com) (209.85.221.20) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Nov 2008 17:39:28 +0000 Received: by qyk13 with SMTP id 13so542581qyk.2 for ; Thu, 20 Nov 2008 09:39:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=lwNaryi5kcWLM8DOjGG5QuPO6JmG9IptvYfX0GiMI6A=; b=TDjCkDKNVNi+m2fJfg+UNbSLOIOhkndGKg8djKHQSupLhT7Rb3sy+mtXeJ6N+vctjh +mgxx1brKtZZEaGxbu4jvnAyYZTfXum/hWwHzfPFGScl2QetWLwX4FlRDsXe3Mse6LmG YBJV+BUtR79/Uma4SGwcKLxBz/ifTby18gUbs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=HpIiZ/emy2x+ALpCFP0QGPJNro1x/BPTuH6Ww4+2uzgN2qfhzOHnz6G5cGW3a+nkzQ A00UmsblcLfMnhH+L+fpRIq7VHoJJ+B/MRapkXdt0Py4U66+TQ6qkZUbehPZGe8BcIph DIqBEYRkOFTGyaHzreYb2jp0FGckEfMBbXkOQ= Received: by 10.214.81.9 with SMTP id e9mr2676473qab.46.1227202751996; Thu, 20 Nov 2008 09:39:11 -0800 (PST) Received: by 10.215.12.12 with HTTP; Thu, 20 Nov 2008 09:39:11 -0800 (PST) Message-ID: Date: Thu, 20 Nov 2008 10:39:11 -0700 From: "Wendy Smoak" To: users@continuum.apache.org Subject: Continuum 1.2.2 + ApacheDS LDAP MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org I'm trying to get Continuum 1.2.2 working with LDAP, using ApacheDS 1.5.4, both on localhost. I've un-commented the LdapConnectionFactory and the UserMapper in application.xml. This is my security.properties file so far: user.manager.impl=ldap ldap.bind.authenticator.enabled=true redback.default.admin=admin redback.default.guest=guest security.policy.password.expiration.enabled=false ldap.config.hostname=localhost ldap.config.port=10389 ldap.config.base.dn=o=example ldap.config.context.factory=com.sun.jndi.ldap.LdapCtxFactory ldap.config.bind.dn=uid=admin,ou=system ldap.config.password=secret #ldap.config.authentication.method= #ldap.config.mapper.attribute.email=mail #ldap.config.mapper.attribute.fullname=givenName ldap.config.mapper.attribute.password=userPassword ldap.config.mapper.attribute.user.id=cn ldap.config.mapper.attribute.user.base.dn=dc=example,dc=com ldap.config.mapper.attribute.user.object.class=person #ldap.config.mapper.attribute.user.filter=(attributeName=value) The impressive stack trace that results when I visit http://localhost:9098/continuum can be seen here: http://wiki.wsmoak.net/cgi-bin/wiki.pl?ContinuumLDAP The first bit is: 2008-11-20 10:24:30,546 [btpool0-7] INFO ldapController - Searching for user: guest 2008-11-20 10:24:30,548 [btpool0-7] INFO ldapController - Searching for users with filter: '(&(objectClass=person)(cn=guest))' from base dn: dc=example 2008-11-20 10:24:30,556 [btpool0-7] ERROR userManager#ldap - Failed to find user: guest On #apache-directory on freenode irc, they seemed to think it's a problem that it's looking in dc=example and not dc=example,dc=com as configured. Any ideas on what I might try next? -- Wendy