Hi,
I've been looking through the Web Service API documentation, but I'm not really sure how I would go about changing the owner of a document.
Does anyone have any suggestions?
Thanks
Gemma
I found the following post
https://knowledge.opentext.com/knowledge/cs.dll?func=ll&objId=18498985&objAction=viewincontainer&ShowReplyEntry=18496884#forum_topic_18496884
I'm just not sure about this bit
newOwnerRight.Permissions = SetOwnerPermissions();
The SetOwnerPermissions() would be creating a new NodePermissions object with the desired perms (ie. add items perms, delete perms, see perms, etc.).
For example:
NodePermissions perms = new NodePermissions();
perms.SeePermission = true;
perms.SeeContentsPermission = true;
perms.ModifyPermission = true;
perms.EditAttributesPermission = true;
perms.AddItemsPermission = true;
perms.ReservePermission = true;
perms.DeleteVersionsPermission = true;
perms.DeletePermission = true;
perms.EditPermissionsPermission = true;
J