Reputation: 6672
In every larger company I worked for they used LDAP as a way to access the central repository of user information, but very few have taken efforts to extend the schema to include objectClasses that aren't derived from inetOrgPerson.
Microsoft's Active Directory makes extensive schema extensions but very few commercial products leverage the capabilities of LDAP.
Is it because most LDAP developers don't know how to model beyond users? Find value in it but just haven't thought deeply about it? Have tried it and ran into performance problems? Something else?l
Upvotes: 8
Views: 1639
Reputation: 1
LDAP is way to go that is why it is called light directory, rad fast, write slow ...it is subset of X.500. University of Michigan has best and brightest on this subject as they contributed to protocol. If I would do any authentication and authorization in corporate world, I would never use crap like AD. And yes I would separate trees from corporate to cloud and work with sachems and pipelines to make sure that off boarding, on boarding and syncing OU's and so forth is done correctly and easy...
Upvotes: 0
Reputation: 11026
We have done work for some companies with 65Million LDAP records an none of the records were for people.
The data was a variety of items mostly for devices including: * DHCP * DNS * Mac Addresses * Location * SN * Brand * Model * etc....
-jim
Upvotes: 3
Reputation: 308988
I thought LDAP was highly optimized for fast, frequent reads. I don't think they'd scale for transactional systems.
The relational model and its expression in SQL is a powerful thing. I don't think it will be easily supplanted by LDAP or object databases.
Upvotes: 0
Reputation: 532625
Personally I think it's because LDAP is a directory, not a database. Directories are good for looking up people and their associated data, but they're not particularly good for tracking highly relational data -- which is what a lot of the rest of our data looks like. In fact, our use of LDAP is actually as a front-end to "people"-data, merging a lot of data streams into a single directory view. We still have the "people" data in the backend databases along with the rest of our institutional data and have only chosen LDAP (in our case ADAM) as a front-end to allow convenient lookup of the merged "people" data. Now that we're moving to web services as a means of accessing this data, I'm not sure that it even makes sense to continue down the LDAP route (except to support existing services that haven't been updated).
Upvotes: 4
Reputation: 3013
Upvotes: 5
Reputation: 28875
I would think that it is due to A) the complexity of working with LDAP (much higher than SQL) and B) the fact that your product would be tied completely to it. That is, it would have no market outside of large organizations running LDAP. For less money and effort, I could build an app that works anywhere.
Now, internal applications written specifically for the organization that need access to other LDAP data are a different story. But you will obviously hear less about them because they are not commercially marketed.
Upvotes: 2