LDAP-based authentication

If the default built-in authentication system does not suit your security requirements Sybase Search also supports LDAP for authentication and authorization. To configure Sybase Search for LDAP, edit csi.xml using any text editor and change the authenticationProvider parameters to your LDAP server configurations. The file is located in: install_location\OmniQ\config\security\csi\sample\ldap

<?xml version="1.0" encoding="UTF-8"?>
<configuration xmlns:config="http://www.sybase.com/csi/1.0/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sybase.com/csi/1.0/config
http://www.sybase.com/csi/1.0/config.xsd">
       <provider name="com.isdduk.framework.security.provider.ResourceCheckAuthorizer"
       type="authorizer" controlFlag="sufficient"/>
       <provider name="com.isdduk.framework.security.provider.BasicAttibuter"
       type="attributer"/>
       <authenticationProvider name="com.sybase.security.ldap.LDAPLoginModule"
        controlFlag="sufficient">
	  <options name="ServerType" value="sunone5"/>
	  <options name="ProviderURL" value="ldap://localhost:389"/>
	  <options name="DefaultSearchBase" value="dc=sybase,dc=com"/>
	  <options name="BindDN" value="uid=jsmith,dc=sybase,dc=com"/>
	  <options name="BindPassword" value="test"/>
       </authenticationProvider>
       <provider name="com.sybase.security.ldap.LDAPAttributer" type="attributer"/>
</configuration>