Reputation: 4736
I am running an ldapv3 server on apacheds2.0.0 using Apache Directory Studio. I have successfully imported a schema that defines my own custom object classes, Here is an example from the schema:
objectclass ( 7.7.7.7
NAME 'Dog'
SUP Animal
STRUCTURAL
MUST dogName
MAY ( lead$ collar$ house$ age$ color$ etc$)
)
When I start up the server and try to add a new Dog
entry the objectClass Dog
is not an option.
Does something else need to be done programatically or otherwise, before my custom object classes can be used?
Upvotes: 0
Views: 1801
Reputation: 11132
Try re-loading the schema from the connection properties.
right-click on the connection, properties->connection->schema->reload schema
Upvotes: 2