Hi,
I'm able to successfully upload a file and apply an existing category using the following C# code:Metadata meta = new Metadata();AttributeGroup[] attgroup = new DocumentManagement.AttributeGroup[1];
attgroup[0] = dm.GetCategoryTemplate(otDMAuth, catID); //Where catID is the objectID of the category
meta.AttributeGroups = attgroup;contextID = dm.CreateDocumentContext(otDMAuth, nodeID, f.Name,objectID = cs.UploadContent(otCSAuth, contextID, fileAtts, inStream);null, false, meta);But, I can't find any examples in C# on how to actually apply a value to the an attribute item of that category. This particular category has three Text: Field attributes with blank values:
| Type | Rows | Attribute Items |
| Text: Field | 1 (1 max) | |
| Text: Field | 1 (locked) | |
| Text: Field | 1 (locked) | |
How would I get a value into those fields? Any help on this would be greatly appreciated.
Dave Ross