How can I implement a Serialization Proxy that can be used with a XMLEncoder/Decoder? The classic one (the Bloch one, I mean) doesn't work...
Can I use the Serialization proxy pattern with an Externalizable object?
any idea how I do a invocation using marshalling and unmarshalling java Proxy? I need save a xml file to post inocation. Exists any (dynamic) Proxy implementation that can give a solution? ...
I need to be able to serialize a class into a string, and I know of 2 patterns: 1) (normal) Serialization pattern 2) Proxy Serialization pattern I've read http://lingpipe-blog.com/2009/08/10/serializing-immutable-singletons-serialization-proxy/ (the only website ...