in reply to Re: Direferencing problem
in thread Direferencing problem

I would gladly do that, but unfortunately, I am a student working for a firm and I dont have the priviliges (rights) to install CPAN modules.. and the Data::Dump is not pre-installed with it. So I'd have to ask someone with right, but my boss is on vacation.

Will see what I can do about that. But in the meantime, I posted the output of $artfList:

#Outpus of $artfList: #ArftifactInPlanningFolderSoapList=HASH(0x27d8630)

Hope, this will be helpful enough

Replies are listed 'Best First'.
Re^3: Direferencing problem
by Corion (Patriarch) on Jul 30, 2014 at 07:48 UTC

    As an alternative, Data::Dumper is unlikely to be removed and will also give you an overview of your data structure.

Re^3: Direferencing problem
by McA (Priest) on Jul 30, 2014 at 07:51 UTC

    Hi,

    Data::Dumper is part of the perl core and should be available for you to solve the same problem.

    use Data::Dumper; ... print Dumper($element), "\n";

    Regards
    McA

      Updated my first post with DATA DUMPER output.