Bug 1015303
Summary: | LDAP security realm needs to have configurable timeouts | ||
---|---|---|---|
Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Derek Horton <dehort> |
Component: | Domain Management | Assignee: | Darran Lofthouse <darran.lofthouse> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Josef Cacek <jcacek> |
Severity: | unspecified | Docs Contact: | Russell Dickenson <rdickens> |
Priority: | unspecified | ||
Version: | 6.1.1 | CC: | brian.stansberry, emuckenh, hokuda, kkhan, olukas, sgilda, smumford |
Target Milestone: | DR6 | ||
Target Release: | EAP 6.3.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: |
This release of JBoss EAP 6 contains an enhancement that allows the use of custom properties on outbound LDAP connections.
In previous versions of the product, outbound LDAP connections were created with a limited set of properties leaving the remaining to the default behavior. As a result it was not possible for custom properties to be defined to control aspects such as connection and read timeouts.
In this release, custom properties can now be defined for the outbound LDAP connections with code similar to the following:
----
<ldap name="LocalLdap" url="ldap://localhost:10389" search-dn="uid=wildfly,dc=simple,dc=wildfly,dc=org" search-credential="password1!">
<properties>
<property name="one" value="two"/>
<property name="three" value="four"/>
</properties>
</ldap>
----
|
Story Points: | --- |
Clone Of: | Environment: | ||
Last Closed: | 2014-06-28 15:44:45 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Derek Horton
2013-10-03 21:08:10 UTC
Darran Lofthouse <darran.lofthouse> made a comment on jira WFLY-2214 This actually raises an interesting point to also consider - if we can detect that the first server was not used maybe for a short period of time we should re-order the server list to give a higher priority to the server we know does exist. As authentication also establishes a connection to the server to verify the password it would be beneficial to lower the priority of the missing server. Darran Lofthouse <darran.lofthouse> updated the status of jira WFLY-2214 to Coding In Progress Darran Lofthouse <darran.lofthouse> made a comment on jira WFLY-2214 Just changed the title to this one, going to add support for some additional environment properties to be set for the LDAP connection, things like timeouts are moving into an area that non-standard properties are now set - also there are additional non-standard properties would could potentially support so adding some generic support for properties will allow for those as well. This is already merged upstream. Verified on EAP 6.3.0.DR6. Remove <programlisting> tags, change '<' to '<' and '>' to '>' to fix Bug 1096865 |