Jazz to LDAP Group Mapping
Mapping between Jazz groups and LDAP groups. One Jazz group can be mapped to multiple LDAP groups. The LDAP groups must be separated by a semi colon. For example, JazzAdmins=LDAPAdmins1;LDAPAdmins2 maps JazzAdmins group to LDAPAdmins1 and LDAPAdmins2.
How to set up a jazz group to some ldap groups at web.xml?
ex: JazzAdmins=LDAPAdmins1;LDAPAdmins2
-----
I tried to duplicate the tag security-role-ref but groups are not recognized by tomcat or jazz login I don't know:
[security-role-ref]
[role-name]JazzUsers[/role-name]
[role-link]MyJazzUsers1[/role-link]
[/security-role-ref]
[security-role-ref]
[role-name]JazzUsers[/role-name]
[role-link]MyJazzUsers2[/role-link]
[/security-role-ref]
3 answers
Hi,
I think you have to declare the LDAP groups as security roles.
=more information at RTC Information Center=
http://publib.boulder.ibm.com/infocenter/rtc/v2r0m0/index.jsp?topic=/com.ibm.jazz.install.doc/topics/c_plan_identity_management.html
masumi
I think you have to declare the LDAP groups as security roles.
[security-role]
[role-name]MyJazzUsers1[/role-name]
[role-name]MyJazzUsers2[/role-name]
[/security-role]
=more information at RTC Information Center=
http://publib.boulder.ibm.com/infocenter/rtc/v2r0m0/index.jsp?topic=/com.ibm.jazz.install.doc/topics/c_plan_identity_management.html
masumi
Hi,
I think you have to declare the LDAP groups as security roles.
[security-role]
[role-name]MyJazzUsers1[/role-name]
[role-name]MyJazzUsers2[/role-name]
[/security-role]
masumi
It's a part of the configuration. But I have to link the Jazz Group with LDAP Group using security-role-ref / role-link.
The problem is: I couldn't link a Jazz Group with some LDAP Groups at same time (1 to N).
If I use it, only the last security-role-ref (MyJazzUser2) is recognized:
I don't know how to configure web.xml to map one Jazz group to multiple LDAP groups.
[security-role-ref]
[role-name]JazzUsers[/role-name]
[role-link]MyJazzUsers1[/role-link]
[/security-role-ref]
[security-role-ref]
[role-name]JazzUsers[/role-name]
[role-link]MyJazzUsers2[/role-link]
[/security-role-ref]
I don't know how to configure web.xml to map one Jazz group to multiple LDAP groups.