[jboss-user] [JBoss Portal] - LDAP authentication using LDAPExtUserModuleImpl is case-inse

jasonawong do-not-reply at jboss.com
Wed Aug 20 12:06:37 EDT 2008


When I setup JBoss Portal to authenticate against an LDAP using the LDAPExtUserModuleImpl class, the login is case insensitive (ex. in LDAP the username is "user", but both "user" and "User" work).  When I login as "User" and try to access the dashboard then I receive a "HTTP Status 403" along with the following error in the stacktrace.

11:02:14,531 ERROR [DefaultPortalControlPolicy] Rendering portlet window  produced an error org.jboss.portal.core.controller.AccessDeniedException: View permission not granted has denied access: dashboard:/user

When I login as "user" and access the dashboard, then everything works fine.  It seems that the Portal login is case-insensitive but the dashboard requires the username to be case-sensitive.  Is there a way to force the LDAP authentication to be case-sensitive?

Here is rundown of the environment:
JBoss Portal: 2.6.6 (bundled version)
Database: Hypersonic
OS: Windows XP
LDAP: OpenDS (same results using Active Directory)

ldap_identity-config.xml settings

  | <?xml version="1.0" encoding="UTF-8"?>
  | <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  |   ~ JBoss, a division of Red Hat                                              ~
  |   ~ Copyright 2006, Red Hat Middleware, LLC, and individual                   ~
  |   ~ contributors as indicated by the @authors tag. See the                    ~
  |   ~ copyright.txt in the distribution for a full listing of                   ~
  |   ~ individual contributors.                                                  ~
  |   ~                                                                           ~
  |   ~ This is free software; you can redistribute it and/or modify it           ~
  |   ~ under the terms of the GNU Lesser General Public License as               ~
  |   ~ published by the Free Software Foundation; either version 2.1 of          ~
  |   ~ the License, or (at your option) any later version.                       ~
  |   ~                                                                           ~
  |   ~ This software is distributed in the hope that it will be useful,          ~
  |   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of            ~
  |   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU          ~
  |   ~ Lesser General Public License for more details.                           ~
  |   ~                                                                           ~
  |   ~ You should have received a copy of the GNU Lesser General Public          ~
  |   ~ License along with this software; if not, write to the Free               ~
  |   ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA        ~
  |   ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.                  ~
  |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
  | 
  | <!--<!DOCTYPE identity-configuration PUBLIC
  | "-//JBoss Portal//DTD JBoss Identity Configuration 1.0//EN"
  | "http://www.jboss.org/portal/dtd/identity-config_1_0.dtd">-->
  | 
  | 
  | <!-- This file overrides settings from standardidentity-config.xml.
  |      Check default option values that are used there --> 
  | 
  | <identity-configuration>
  |    <datasources>
  |       <datasource>
  |          <name>LDAP</name>
  |          <config>
  |             <option>
  |                <name>host</name>
  |                <value>localhost</value>
  |             </option>
  |             <option>
  |                <name>port</name>
  |                <value>389</value>
  |             </option>
  |             <option>
  |                <name>adminDN</name>
  |                <value>cn=Directory Manager</value>
  |             </option>
  |             <option>
  |                <name>adminPassword</name>
  |                <value>password</value>
  |             </option>
  |             <!--<option>
  |                <name>protocol</name>
  |                <value>ssl</value>
  |             </option>-->
  |          </config>
  |       </datasource>
  |    </datasources>
  |    <modules>
  |       <module>
  |          <!--type used to correctly map in IdentityContext registry-->
  |          <type>User</type>
  |          <implementation>LDAP</implementation>
  |          <!--Use this implementation for more flexible user retrieval-->
  |          <class>
  |             org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl
  |          </class>
  |          <config/>
  |       </module>
  |       <module>
  |          <type>Role</type>
  |          <implementation>LDAP</implementation>
  |          <!--Use this implementation for more flexible user retrieval-->
  |          <class>
  |             org.jboss.portal.identity.ldap.LDAPExtRoleModuleImpl
  |          </class>
  |          <config/>
  |       </module>
  |       <module>
  |          <type>Membership</type>
  |          <implementation>LDAP</implementation>
  |          <config/>
  |       </module>
  |       <module>
  |          <type>UserProfile</type>
  |          <implementation>DELEGATING</implementation>
  |          <config>
  |             <option>
  |                <name>ldapModuleJNDIName</name>
  |                <value>java:/portal/LDAPUserProfileModule</value>
  |             </option>
  |          </config>
  |       </module>
  |       <module>
  |          <type>DBDelegateUserProfile</type>
  |          <implementation>DB</implementation>
  |          <config>
  |             <option>
  |                <name>randomSynchronizePassword</name>
  |                <value>true</value>
  |             </option>
  |          </config>
  |       </module>
  |       <module>
  |          <type>LDAPDelegateUserProfile</type>
  |          <implementation>LDAP</implementation>
  |          <config/>
  |       </module>
  |    </modules>
  | 
  |    <options>
  |       <option-group>
  |          <group-name>common</group-name>
  |          <option>
  |             <name>userCtxDN</name>
  |             <value>ou=People,dc=example,dc=com</value>
  |          </option>
  |          <!--Uncomment to use with LDAPExtUserModuleImpl-->
  |          <option>
  |             <name>userSearchFilter</name>
  |             <value><![CDATA[(&((cn={0})(objectClass=person)))]]></value>
  |          </option>
  |          <option>
  |             <name>roleCtxDN</name>
  |             <value>ou=Roles,dc=example,dc=com</value>
  |          </option>
  |          <!--Uncomment to use with LDAPExtRoleModuleImpl-->
  |          <option>
  |             <name>roleSearchFilter</name>
  |             <value><![CDATA[(&((cn={0})(objectClass=group)))]]></value>
  |          </option>
  |          <option>
  | 	   <name>uidAttributeID</name>
  | 	   <value>cn</value>
  | 	 </option>
  |       </option-group>
  |    </options>
  | 
  | </identity-configuration>
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171547#4171547

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171547



More information about the jboss-user mailing list