a. Consider the data marshalling involved in the transmission of the input data items between the web form and the web script: Describe and explain how each of the two aspects is
achieved in this case.
Marshaling and serialization are loosely synonymous in the context of remote procedure call, but systematically different as a matter of intent. In marshalling an intent or process of transferring object from a client server. Intent is to have same object that is present the web script. It simplifies communication because it uses composite objects in order to communicate instead of primitive objects. Marshalling is used within implementation of different remote procedure call mechanism where it is necessary to transport data processes between threads. Marshalling is used extensively with web forms and web scripts that use XPCOM technologies provided with the browser. The web browser allows scripting language to use XPCOM through XPConnect.
Comments
Leave a comment