cancel
Showing results for 
Search instead for 
Did you mean: 

Featured Setting in SOAP Call Ignored

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Featured Setting in SOAP Call Ignored

I am doing a SOAP call to set the "featured"  additional attribute to "1", but it is not being stored by Magento.

 

Here is the relevent part of my Java code:

CatalogProductCreateEntity data = new CatalogProductCreateEntity();
AssociativeEntity attribute = new AssociativeEntity();
attribute.setKey("featured");
attribute.setValue("1");
AssociativeArray associativeArray = new AssociativeArray();
associativeArray.getComplexObjectArray().add(attribute);
data.setAdditionalAttributes(associativeArray);