Hello, I am trying to create a coldfusion that allows users to add a 
user/modify a user . I am able to add a user into AD with no problem. I am 
having difficulties with two things. 

1. Query - How do I query AD for more than 1000 users. Currently when I query 
it I only get 1000 user in my results. 

2. Modify - When I attempt to modify a user I get the following error: LDAP: 
error code 19 - 00000057: LdapErr: DSID-0C090A85, comment: Error in attribute 
conversion operation, data 57, vece

This is add user and it works. User is added into ad but it is not activated.
<cfldap action="add"
server="xxxx"
username="domainaccount"
password="xxxx"
attributes="
objectClass=top;person;orgazationalPerson;user;
sAMAccountName=mphelps;cn=Michael Phelps;givenName=Michael;SN=Phelps;
employeeID=11111;telephoneNumber=5555555555;
physicalDeliveryOfficeName=Beijing;[EMAIL PROTECTED];"
dn="cn=Michael Phelps,ou=Staff,dc=xxxx,dc=com">

Modify user on the other hand fails. 
<cfldap action="modify"
modifytype="replace"
server="xxxxx"
username="domainAccount"
password="xxxxx"
attributes="telephonenumber=5555555555;physicalDeliveryOfficeName=HomeOffice;
[EMAIL PROTECTED];sAMAccountName=mphelps;cn=Michael Phleps;
employeeID=11111;instanceType=4;
objectClass=top;person;orgazationalPerson;user;
objectCategory=CN=Person,CN=Schema,CN=Configuration,DC=xxxx,DC=com"
dn="CN=Michael Phelps,OU=Staff,DC=xxxx,DC=com">

Also is there a way to allow individual users to update their information. Any 
help will be greatly appreciated. Thank you in advance for your assistance. 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310944
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to