Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -170,10 +170,12 @@ 170 170 Here are some LDAP client for checking your configuration: 171 171 172 172 Java based and Open Source: 173 + 173 173 * [[Apache Directory Studio>>http://directory.apache.org/studio/]] 174 174 * [[JXplorer>>http://jxplorer.org]] 175 175 176 176 Windows only: 178 + 177 177 * [[Softerra LDAP Browser>>http://www.ldapbrowser.com/download.htm]] 178 178 179 179 == Detailed use cases == ... ... @@ -212,10 +212,12 @@ 212 212 1. Implement the {{scm path="xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/user/api/XWikiAuthService.java"}}XWikiAuthService{{/scm}} interface. 213 213 1. Edit the //WEB-INF/xwiki.cfg// file and add a //xwiki.authentication.authclass// property pointing to your class. For example: 214 214 215 -{{code}} 217 +{{code language="properties"}} 216 216 xwiki.authentication.authclass = com.acme.MyCustomAuthenticationService 217 217 {{/code}} 218 218 221 +You can find various authenticators examples on https://github.com/xwiki-contrib/sandbox/blob/master/authenticators/. 222 + 219 219 Here's a [[tutorial on implementing a custom authentication class for authenticating against Oracle's SSO>>http://bodez.wordpress.com/2008/10/15/xwiki-user-authentication-with-oracle-sso/]]. 220 220 221 221 Note, that you also can implement own right management service by implementing {{scm path="xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/user/api/XWikiRightService.java"}}XWikiRightService{{/scm}} interface: