Does anyone know how to assign values to LDAP objects with upper cased
attributes? For example, you can normally do:
user = User.new(@user)
user.sn = params[:user][attr]
But what about the case where there is an attribute that looks like
OXTimeZone? You clearly can’t do:
user = User.new(@user)
user.OXTimeZone = params[:user][attr]
I’m trying to figure out what I need to look at in the ActiveLDAP code
to find out what name it sets the method to for this attribute, but
havn’t sorted it out yet and figured it might be worth asking.
Thanks,
Leah