in reply to prob in unfolding Dumper Data at the Server Side Socket prog
Data::Dumper->new() (not "New") does not return the serialized data structure, it returns a new Data::Dumper object.
$dump_object->Dump() returns the serialized data as a string containing perl code ready for eval().
In other words, you should send the output of $d->Dump() to the client and then restore it using eval $buffer;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: prob in unfolding Dumper Data at the Server Side Socket prog
by sroy.5 (Initiate) on May 19, 2007 at 15:53 UTC | |
by Joost (Canon) on May 19, 2007 at 17:08 UTC |