Re: AD domain login passes to CF App.

2012-08-03 Thread Aaron Rouse
We use a combination of both the CGI.AUTH_USER and CFLDAP. The part that uses CGI.AUTH_USER is for our SSO so that they do not have to key in their username/password. The CFLDAP part is for querying out credentionals from LDAP/AD to then verify against a local users table that then houses applic

Re: AD domain login passes to CF App.

2012-07-30 Thread Russ Michaels
or you could use CFLDAP to authenticate them via CF instead, but remember, cf authentication only protects cfml pages, nothing else, so use a native server side solution is better, as Dave suggests. On Mon, Jul 30, 2012 at 7:26 PM, Dave Watts wrote: > > > I am creating an application that requ

Re: AD domain login passes to CF App.

2012-07-30 Thread Dave Watts
> I am creating an application that requires user login. Users are all the > employees within my organization, but not > every user would use it; only some would. I would like to take advantage of > the users' existing AD domain network > logins so they don't have to keep track of another accoun

AD domain login passes to CF App.

2012-07-30 Thread Nathan Chen
All: I am creating an application that requires user login. Users are all the employees within my organization, but not every user would use it; only some would. I would like to take advantage of the users' existing AD domain network logins so they don't have to keep track of another account.