InterviewSolution
| 1. |
What is the definition of marshalling? |
|
Answer» Marshalling is the conversion of a memory representation of an object into a format that can be saved or transferred to other software applications. Marshalling is the process of converting an object into a serialised form that allows faraway objects to communicate with one other. The phrases SERIALISATION and marshalling are frequently USED interchangeably. The GOAL of marshalling is to have the same object that is present in one operating programme be present in another, i.e. a CLIENT object to be transferred to and present on the server. Serialization, for example, does not necessarily have this goal in mind because it is only concerned with converting DATA into a stream of bytes. |
|