Hi!
This is taking me way to much time to figure on my own, so a quick question:
How do I add an existing category to an item (I am creating)?
I have a CategoryType ID and DisplayName. But I am not sure how I am supposed to create the new category and add it to the item (especially the adding part fails...)
I thought of something like this, but doesnt work--->
List<Category> catList = myItem.getCategories(); Category cat = new Category();
cat.setDisplayName( "Test" );
cat.setId( "ELS/####" );
catList.add( cat );