in reply to cannot get array values

Refs are scalars, not arrays. Try:
my $keywordsRef = $info->Keywords(); foreach $k (@$keywordsRef) { ...

The PerlMonk tr/// Advocate