proxy « serialize « Java I/O Q&A





1. Serialization Proxy with XMLEncoder/Decoder    stackoverflow.com

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...

2. Serialization proxy pattern with Externalizable    stackoverflow.com

Can I use the Serialization proxy pattern with an Externalizable object?

3. Invocation with java Proxy (xml serialization)? How I do?    stackoverflow.com

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? ...

4. what problem does the serialization proxy pattern solves that the serialization pattern doesn't solve?    stackoverflow.com

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 ...