What is the difference between Serialization and Marshalling? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T04:04:10Zhttp://stackoverflow.com/feeds/question/770474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770474/what-is-the-difference-between-serialization-and-marshalling8 What is the difference between Serialization and Marshalling?Peter2009-04-20T23:26:53Z2009-04-20T23:52:56Z
<p>I know that in terms of several distributed techniques like RPC the term Marshalling is used, but I don't get the difference with Serialization. It both is transforming objects to series of bits no?</p>
<h3>Related:</h3>
<p><a href="http://stackoverflow.com/questions/633402/what-is-serialization">What is Serialization?</a></p>
<p><a href="http://stackoverflow.com/questions/154185/what-is-object-marshalling">What is Object Marshalling?</a></p>
http://stackoverflow.com/questions/770474/what-is-the-difference-between-serialization-and-marshalling/770481#7704811Answer by Uri for What is the difference between Serialization and Marshalling?Uri2009-04-20T23:30:39Z2009-04-20T23:30:39Z<p>I think that the main difference is that Marshalling supposedly also involves the codebase. In other words, you would not be able to marshal and unmarshal an object into a state-equivalent instance of a different class. .</p>
<p>Serialization just means that you can store the object and reobtain an equivalent state, even if it is an instance of another class.</p>
<p>That being said, they are typically synonyms.</p>
http://stackoverflow.com/questions/770474/what-is-the-difference-between-serialization-and-marshalling/770483#7704838Answer by Bill the Lizard for What is the difference between Serialization and Marshalling?Bill the Lizard2009-04-20T23:31:23Z2009-04-20T23:31:23Z<p>From the <a href="http://en.wikipedia.org/wiki/Marshalling%5F%28computer%5Fscience%29" rel="nofollow">Marshalling (computer science)</a> Wikipedia article:</p>
<blockquote>
<p>The term "marshal" is considered to be synonymous with "serialize" in the Python standard library[1], but the terms are not synonymous in the Java-related RFC 2713:</p>
<p>To "marshal" an object means to record its state and codebase(s) in such a way that when the marshalled object is "unmarshalled", a copy of the original object is obtained, possibly by automatically loading the class definitions of the object. You can marshal any object that is serializable or remote. Marshalling is like serialization, except marshalling also records codebases. Marshalling is different from serialization in that marshalling treats remote objects specially. (RFC 2713)</p>
<p>To "serialize" an object means to convert its state into a byte stream in such a way that the byte stream can be converted back into a copy of the object.</p>
</blockquote>
<p>So, marshalling also saves the <em>code</em> of an object in the byte stream in addition to its state.</p>
http://stackoverflow.com/questions/770474/what-is-the-difference-between-serialization-and-marshalling/770485#7704851Answer by McWafflestix for What is the difference between Serialization and Marshalling?McWafflestix2009-04-20T23:32:45Z2009-04-20T23:32:45Z<p>Marshalling is usually between relatively closely associated processes; serialization does not necessarily have that expectation. So when marshalling data between processes, for example, you may wish to merely send a REFERENCE to potentially expensive data to recover, whereas with serialization, you would wish to save it all, to properly recreate the object(s) when deserialized.</p>
http://stackoverflow.com/questions/770474/what-is-the-difference-between-serialization-and-marshalling/770509#7705092Answer by Jeffrey Hantin for What is the difference between Serialization and Marshalling?Jeffrey Hantin2009-04-20T23:42:52Z2009-04-20T23:42:52Z<p>Marshaling and serialization are <em>loosely</em> synonymous in the context of remote procedure call, but semantically different as a matter of intent.</p>
<p>In particular, marshaling is about getting parameters from here to there, while serialization is about copying structured data to or from a primitive form such as a byte stream. In this sense, serialization is one means to perform marshaling, usually implementing pass-by-value semantics.</p>
<p>It is also possible for an object to be marshaled by reference, in which case the data "on the wire" is simply location information for the original object. However, such an object may still be amenable to value serialization.</p>
<p>As @Bill mentions, there may be additional metadata such as code base location or even object implementation code.</p>
http://stackoverflow.com/questions/770474/what-is-the-difference-between-serialization-and-marshalling/770516#7705160Answer by mP for What is the difference between Serialization and Marshalling?mP2009-04-20T23:46:53Z2009-04-20T23:46:53Z<p>Think of them as synonyms, both have a producer that sends stuff over to a consumer... In the end fields of instances are written into a byte stream and the other end foes the reverse ands up with the same instances. </p>
<p>NB - java RMI also contains support for transporting classes that are missing from the recipient...</p>