Hi again.
I am trying to add some metadata values to a file which should be uploaded then. Metadata is saved in the categories of a file. So I tried to translate the example from C# to Java, but this does not work at the moment.
Within the C# examples u can see this:
StringValue directedByValue = categoryTemplate.Values[0] as StringValue;directedByValue.Values = new string[] { "Andy Wachowski", "Larry Wachowski" }; In Java I cannot assign values, i can only read those? There is no setValues-Method which I could use, although it is described in the Webservices-API!?!
StringValue tag = (StringValue) attributeGroup.getValues().get(0);
tag.setValues() does not exist!
Can someone provide a solution for this?
Please help.
Thanks a lot.
Best regards,
Yves