Are there any known problems with using Storable with a Class::Accessor derived module? I'm trying to nfreeze a module derived from Class::Accessor and send it across a Unix socket to be thawed by another application. The nfreeze method seems to work fine, and the thaw succeeds without an error; however, when I try to access a method defined in the class's mk_accessors method I receive an error stating that the thawed object doesn't have a method by that name.
Is what I'm trying to do impossible, or should I be looking in a different direction?
Thank you for any help you can provide.