Hello,
I am trying to set category attribute values using Java webservices 9.7.1.
Step 1: Retrieve category template using - AttributeGroup attrGrp = dm.getCategoryTemplate(44901);
Step2: I need to set values for attributes inside attrGrp - Here is where I am stuck
List<DataValue> dVals = attrGrp.getValues();
StringValue strVal1 = (StringValue) dVals.get(0);
no method to set value for strVal1 
Moreover if I create new StringValue object as below -
StringValue tempStrVal1 = new StringValue();
tempStrVal1.setDescription("TestString");
tempStrVal1.setKey("TempStringKey");
tempStrVal1.setValue(___) no such method
Please help me on how to set values for 'DataValue'/StringValue objects? There are methods to set key (setKey) and desc (setDescription) but not for value?
If somebody has code snippets to apply category attribute values that would greatly help...
Thanks!