myvd-develop Mailing List for MyVD Virtual Directory
Status: Beta
Brought to you by:
bigman921
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Yann C. <yan...@gm...> - 2015-07-08 08:43:10
|
Hello all, I have myvd installed and configured to reach two directories (one for internal users dc=company-internal,dc=com and one for external users dc=company-external,dc=com). MyVD is needed to provide a view on all my user accounts with the same DN (dc=company,dc=com). So I have configured several DNAttributeMapper to rewrite basedn. My directories also contain "groups" with the "uniqueMember" multi-valued attribute. Each uniqueMember attribute point to a DN of an existing entry, so I have configured MyVD to rewrite these DN stored in the uniqueMember attribute like this : server.InternalGroup.MappingDNIntGroup.className=net.sourceforge.myvd.inserts.mapping.DNAttributeMapper server.InternalGroup.MappingDNIntGroup.config.dnAttribs=uniqueMember server.InternalGroup.MappingDNIntGroup.config.remoteBase=o=people,dc=company-internal,dc=com server.InternalGroup.MappingDNIntGroup.config.localBase=ou=internal,dc=company,dc=com BUT, in some case, a uniqueMember attribute contain a DN pointing to another group and not an account (nested group). So I have to rewrite "uniqueMember" pointing to account but NOT "uniqueMember" pointing to another group. Does MyVD provide a specific filter / property to check the objectClass of a DN stored in an attribute (like uniqueMember) before rewrite its DN ? Do I need to develop a specific "insert" class to do that? If yes, do you have information / sample to do this? Thanks for your support, Ycam |
|
From: Marc B. <mbo...@gm...> - 2008-09-11 17:34:33
|
I will integrate your patch. Thanks for the feedback.
Marc
On 9/11/08, Certus Technology <in...@ce...> wrote:
> Hello,
>
> We have just started using MyVD and have found some behaviour in the
> JDBC insert that we would like to change. Is it possible for us to
> submit a patch?
>
> My diffs are:
>
> diff JdbcEntrySet.bk JdbcEntrySet.java
> 127,128c127,130
> <
> < attrib.addValue(valIt.next());
> ---
> > String nextValue = valIt.next();
> > if (nextValue != null) {
> > attrib.addValue(nextValue);
> > }
>
> In summary, I want better handling when my database row contains null
> values. Currently, the code as you have it throws an exception when you
> attempt to add a null value to the LDAPAttribute. This change just
> avoids that Exception and skips nulls.
>
> Regards
>
> Rob Pumphrey
>
>
> --
> Certus Technology Associates Limited.
> http://www.certus-tech.com
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> Myvd-develop mailing list
> Myv...@li...
> https://lists.sourceforge.net/lists/listinfo/myvd-develop
>
--
Sent from Gmail for mobile | mobile.google.com
|
|
From: Certus T. <in...@ce...> - 2008-09-11 10:51:57
|
Hello,
We have just started using MyVD and have found some behaviour in the
JDBC insert that we would like to change. Is it possible for us to
submit a patch?
My diffs are:
diff JdbcEntrySet.bk JdbcEntrySet.java
127,128c127,130
<
< attrib.addValue(valIt.next());
---
> String nextValue = valIt.next();
> if (nextValue != null) {
> attrib.addValue(nextValue);
> }
In summary, I want better handling when my database row contains null
values. Currently, the code as you have it throws an exception when you
attempt to add a null value to the LDAPAttribute. This change just
avoids that Exception and skips nulls.
Regards
Rob Pumphrey
--
Certus Technology Associates Limited.
http://www.certus-tech.com
|
|
From: Marc B. <mbo...@gm...> - 2008-06-16 10:56:16
|
Johan, First, I apologize for not getting back to you sooner. I missed this message in my other email. Please do send your Insert and I'd be happy to add it to SVN. Thanks for the compliment and I hope to hear from you. Are you interested in working on the core of the system? Thanks Marc On 5/30/08, Johan Akerstrom <jak...@gm...> wrote: > Hello, > > First of all, what a brilliant piece of engineering, MyVD is great stuff > (apart from the name... don't really wanna get my own VD). > > I've written my first insert and with _*very_ *limited testing it seems to > be working alright. > It's an insert which does substring replacements for for example the mail > attribute in the following manner: > > jo...@la... -> jo...@pr... > > Who should I send the code to for a a bit of code review and for future > inclusion to SVN? > > -- > Regards, > > Johan Akerstrom > |
|
From: Johan A. <jak...@gm...> - 2008-05-30 09:26:43
|
Hello, First of all, what a brilliant piece of engineering, MyVD is great stuff (apart from the name... don't really wanna get my own VD). I've written my first insert and with _*very_ *limited testing it seems to be working alright. It's an insert which does substring replacements for for example the mail attribute in the following manner: jo...@la... -> jo...@pr... Who should I send the code to for a a bit of code review and for future inclusion to SVN? -- Regards, Johan Akerstrom |
|
From: Marc B. <mbo...@gm...> - 2008-01-21 02:39:53
|
All, I wanted to shoot out a quick note to let you know MyVD 0.8.2 has been released and is now available http://myvd.sourceforge.net/wiki/index.php/News Major enhancements * Joiner & Directory integration guide * New directory inserts to manage dynamic and embedded groups * More trace level logging In addition there have been some minor bug fixes. The official release note will be sent out on Tuesday morning. Thanks Marc |
|
From: Marc B. <mbo...@gm...> - 2006-12-22 12:50:42
|
This is a test |