LDAP passwords

2005-03-25 Thread Paul
Is there any way I can allow my users to change their Active Directory passwords through CFLDAP? When I dump the entire record for a user I don't see any column hinting at password so I'm assuming the answer no, but I thought I'd throw it out to the group before dismissing it entirely.

RE: LDAP passwords

2005-03-25 Thread Damien McKenna
] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 1:41 PM To: CF-Talk Subject: LDAP passwords Is there any way I can allow my users to change their Active Directory

RE: LDAP passwords

2005-03-25 Thread Dawson, Michael
!ke -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 12:41 PM To: CF-Talk Subject: LDAP passwords Is there any way I can allow my users to change their Active Directory passwords through CFLDAP? When I dump the entire record for a user I don't see

RE: LDAP passwords

2005-03-25 Thread Paul
Thanks, that's good information. I'll explore a bit. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 1:51 PM To: CF-Talk Subject: RE: LDAP passwords You need a SSL certificate to do this securely with LDAP. I, personally, think

Re: LDAP passwords

2005-03-25 Thread Douglas Knudsen
PROTECTED] Sent: Friday, March 25, 2005 12:41 PM To: CF-Talk Subject: LDAP passwords Is there any way I can allow my users to change their Active Directory passwords through CFLDAP? When I dump the entire record for a user I don't see any column hinting at password so I'm assuming the answer

RE: LDAP passwords

2005-03-25 Thread Dawson, Michael
: LDAP passwords which requires windows and your server belongingt in the correct domain and all. In my company the network/sysadmins will not allow this. I though you could use the cfldap tag for this. You have to have a uid/pwd that has the permissions to do such a thing. Depending on your

RE: LDAP passwords

2005-03-25 Thread Dawson, Michael
BTW, I will add that it is Windows' security that requires a certificate to change as password. ColdFusion could not care less. M!ke -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 4:57 PM To: CF-Talk Subject: Re: LDAP passwords which

Re: LDAP Passwords

2002-10-04 Thread Deanna Schneider
Hm...I think we use netscape directory services, and I pulled that code directly from a production app that never gives us problems. I would guess there are some other attributes set in there (though I'm not positive). I guess the only thing I could suggest is to set up a dummy ldap account and

LDAP Passwords

2002-10-03 Thread Darren Houle
Couldn't find anything in the archives so I thought I'd run it past the group... Has anyone ever used CFLDAP to set a user's password in an LDAP directory? Might there be some additional information out there on this topic? Thanks! Darren MMS health-first.org made the following annotations

Re: LDAP Passwords

2002-10-03 Thread Deanna Schneider
You mean like so: !--- Change password --- cfldap server=#request.ldapserver# port=389 action=modify username=uid=#request.ldapusername#, ou=CES, ou=uwex, o=Extension password=#request.ldappassword# attributes=userpassword=#form.password# dn=uid=#newid#, ou=CES, ou=uwex, o=Extension Deanna

Re: LDAP Passwords

2002-10-03 Thread Darren Houle
Deanna, Yes! but the CF 4.5 documentation warns that when you modify you must specify all values for all existing attributes along with the new ones because any existing attributes you don't specify will be overwritten with empty values. We use an LDAP bridge into Novell NDS and there are way

Re: LDAP Passwords

2002-10-03 Thread Michael Ross
We use the ldap- Novell here as well. If I remember nds won't let you change the password..but I could be wrong...anyways we have stayed away from allowing that. Have you successfully done it? [EMAIL PROTECTED] 10/03/02 04:33PM Deanna, Yes! but the CF 4.5 documentation warns

Re: LDAP Passwords

2002-10-03 Thread Darren Houle
I know that the NDK has Java api's that allow you to accomplish this but I was hoping i wouldn't have to install jar files etc. We authenticate to web apps using LDAP but haven't done the password reset thing yet, but we will. It's just a matter of which method we wind up using. Darren