InterviewSolution
| 1. |
What is marshalling? |
|
Answer» Marshalling is the process of converting an object's MEMORY representation into a format that can be stored or transmitted to other software applications. Marshalling converts an object into serialised form, allowing communication between remote objects. SERIALIZATION and marshalling are TWO terms that are often used interchangeably. The objective of marshalling is to have the same object that is present in one operating programme, to be present in another running programme, i.e. object on a client to be transmitted to and present on the server. For EXAMPLE, serialization does not always have this intention because it is simply concerned with translating data into a stream of bytes. |
|