I believe my question is easy but I don't find any answer to my problem: I made the C# code to insert folders, documents, versions consuming Web Service.
Now... how to set node permission using Web Service? How do I make sure that the user or group called "Marketing&Comunication" (for example) can only see, or modify etc. .. a folder or a document?
public void SetDocumentPermission(string path, string groupName){ string[] aFullPath = path.Split("\\".ToCharArray()); DocManSvc.Node existingNd = prxDocmanSvc.GetNodeByPath(ref prxDocManAuthSvc, this.rootNd.ID, aFullPath); MemberSvc.Member newOwnerMeber = prxMemberSvc.GetGroupByName(ref prxMemberAuthSvc, groupName); ///and now?}Thanks in advance