My vies is:
Problem: Object belongs to some process(VM) and it's lifetime is the same
Serialisation
- transform object state into stream of bytes(JSON, XML...) for saving, sharing, transforming...
Marshalling
- contains Serialisation + codebase
. Usually it used by Remote procedure call
(RPC) -> Java Remote Method Invocation
(Java RMI) where you are able to invoke a object's method which is hosted on remote Java processes.
codebase
- is a place or URL to class definition
where it can be downloaded by ClassLoader. CLASSPATH
[About] is as a local codebase
JVM -> Class Loader -> load class definition -> class
Very simple diagram for RMI
Serialisation - state
Marshalling - state + class definition