ProductIf[] products = kkEng.getProductMgr().getCurrentProducts();
for (int i=0; i < products.length; i++) {
ProductIf product = products;
System.out.println(product.getTags());
}
always prints out null when in DVD-Action category
solution is
product = kkEng.getEng().getProduct(kkEng.getSessionId(), product.getId(), kkEng.getLangId());
orginal product object is not fully populated for performance reasons