[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: slawpo-rwm attributes concatenation
- To: openldap-technical@openldap.org
- Subject: Re: slawpo-rwm attributes concatenation
- From: Benin Technologies <benintechnologies@yahoo.fr>
- Date: Mon, 10 Dec 2012 09:26:16 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.fr; s=s1024; t=1355127985; bh=O3wNw0GDP7MQvEQ27X2rmcBwxl3DGgBy6k6ZT45tfqk=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=ruCuGZectXmb94g1mYc+mBkPWbjV7e/PFfNaIC32gegia9z+uD73QF0tbhWYHXLFQvlHSi1lL2dbc7aSE9Argp2tCZajHUtz+ZI/iwRsgA0NHga5yBF/uHq9OKbpmCOusWQ1Vz/qWEnqpSHMr4IqZhx3zBtjRtkq0T+LuSRn1mU=
- In-reply-to: <50C1E887.2020108@yahoo.fr>
- References: <50C1E887.2020108@yahoo.fr>
- User-agent: Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20120327 Thunderbird/11.0.1
Hi,
What would be the best way to concatenate several attributes into one
(maybe with slapo-rwm and back-relay ?). I know LDAP is a data
container, and not a fancy string generator, but I see no other way
around this.
An example : my directory contain an inetOrgPerson (say John Doe) with 3
telephoneNumber attributes, say 101010, 202020 and 303030.
I access this directory with 2 clients :
the first client displays the data in the right fashion:
cn: John Doe
telephoneNumber:101010
telephoneNumber:202020
telephoneNumber:303030
But the second client displays only one telephoneNumber attribute, so it
displays:
cn: John Doe
telephoneNumber:101010
Given the fact that I have no way to modify the client's source code,
how could I do to display all 3 phone numbers ? An idea would be to use
rwm with back-relay and do some server side string generation, in order
for the second client to retrieve :
cn: John Doe
telephoneNumber:101010/202020/303030
is there a way to do this ?
BT