in reply to Class::Accessor and Storable

This may be a stupid question, but does the other application actually load ("use") the class (module) the object is blessed in before you thaw the object? I don't think storable does this automatically. Also, the subclass should probably explicitly use Class::Accessor or use base 'Class::Accessor', if it doesn't already does so.

Replies are listed 'Best First'.
Re^2: Class::Accessor and Storable
by Belgarion (Chaplain) on Jan 21, 2005 at 04:55 UTC

    Thanks Joost++! I added the use ModuleName to the client code and it works correctly now.