CMDBuild Forum

basic-connector and LDAP

Hello,

 
I have a few hunderd users in my Active Directory and i try to import them as employee's.
Can someone tell me what to do next?
 
when i run connector.sh, there's no error but i don't see any users appearing. I have configured shark.
 
below my configuration.xml and my cmdbuild-schema.xml
 
<?xml version="1.0"?>
<CMDBUILD>
        <Employee>
                <sAMAcountName />
                <mail />
                <cn />
        </Employee>
</CMDBUILD>
 
and a serverldap tag in configuration.xml
        <serverldap>
                <ServerAddress>192.168.178.200</ServerAddress>
                <port>389</port>
                <SSL>0</SSL>
                <User>ldap@contoso.local</User>
                <Password>secretpassword</Password>
                <DN>DC=contoso,DC=local</DN>
                <Class>Users</Class>
                <Search>objectClass=*</Search>
                <Attributes>sAMAccountName,name,cn</Attributes>
        </serverldap>