TruthInSatire
Programmer
I'm trying to provide the ability for our users to change their domain password from our website.
The website is located in the DMZ and is not part of the domain.
I have sucessfully connected and run several LDAP queries. I can authenticate via ldap and all is well.
When I try to change a password I get various errors depending on the code.
I'm not sure if the following attribut is even correct. I've seen it used in a php example.
<CFLDAP ACTION="MODIFY"
MODIFYTYPE="replace"
port = "636"
server = "#serverIP#"
username = "#domain#\#adminuser#"
password = "#adminpassword#"
ATTRIBUTES="unicodepwd=#newtestpassword#"
DN="#ldapDNLookup.DN#">
this code provides the following error:
An error has occured while trying to execute modify :Request: 1 cancelled.
One or more of the required attributes may be missing/incorrect or you do not have permissions to execute this operation on the server
if i don't specify a secure port i get this error:
An error has occured while trying to execute modify :[LDAP: error code 53 - 0000001F: SvcErr: DSID-031A0FC0, problem 5003 (WILL_NOT_PERFORM), data 0 ].
Is this possible to do with CFLDAP
We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.
The website is located in the DMZ and is not part of the domain.
I have sucessfully connected and run several LDAP queries. I can authenticate via ldap and all is well.
When I try to change a password I get various errors depending on the code.
I'm not sure if the following attribut is even correct. I've seen it used in a php example.
<CFLDAP ACTION="MODIFY"
MODIFYTYPE="replace"
port = "636"
server = "#serverIP#"
username = "#domain#\#adminuser#"
password = "#adminpassword#"
ATTRIBUTES="unicodepwd=#newtestpassword#"
DN="#ldapDNLookup.DN#">
this code provides the following error:
An error has occured while trying to execute modify :Request: 1 cancelled.
One or more of the required attributes may be missing/incorrect or you do not have permissions to execute this operation on the server
if i don't specify a secure port i get this error:
An error has occured while trying to execute modify :[LDAP: error code 53 - 0000001F: SvcErr: DSID-031A0FC0, problem 5003 (WILL_NOT_PERFORM), data 0 ].
Is this possible to do with CFLDAP
We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.