Brian Desmond said:
Are you planning to authenticate each member with a Windows account
(website, etc)? If not, you might want to use ADAM instead. It's AD, but it
runs as an application on a server, so no domain controllers, etc. In ADAM,
you could define a class like churchGoer, and add all the attributes you
need to track data.
I want to do something similar to Ed, only my Active Directory accounts will
be used to login. I would like to add a class with several attributes
defining permissions to some custom apps. I figured out how to add a single
attribute and associate it with the user class. Is their a way to join
together two classes? I would like to add the following attributes:
jobCode - Long int
ApplicationAPermissionLevel - int
ApplicationBPermissionLevel - int
ApplicationCPermissionLevel - int
ApplicationDPermissionLevel - int
ApplicationEPermissionLevel - int
ApplicationFPermissionLevel - int
I thought that I might be able to create a new class, put these attributes
in it, and then associate it to the user class. Then, to read the values of
these attributes, I would run a query like this:
Select adspath from LDAPPath, jobCode ,ApplicationAPermissionLevel,
ApplicationBPermissionLevel, ...
WHERE objectCategory='Person' AND objectClass='user'
AND sAMAccountName='myaccount'
Would this work? And how can I associate a custom class with the user
class? Or am I looking at this the wrong way.