Top "Marshalling" questions

Marshalling is the process of transforming the memory representation of an object to a data format suitable for storage or transmission

Is it possible to get all arguments of a function as single object inside that function?

In PHP there is func_num_args and func_get_args, is there something similar for JavaScript?

javascript algorithm function arguments marshalling
Convert Python ElementTree to string

Whenever I call ElementTree.tostring(e), I get the following error message: AttributeError: 'Element' object has no attribute 'getroot' Is …

python xml marshalling elementtree
What is the difference between Serialization and Marshaling?

I know that in terms of several distributed techniques (such as RPC), the term "Marshaling" is used but don't understand …

serialization terminology marshalling rpc
How do you specify the date format used when JAXB marshals xsd:dateTime?

When JAXB marshals a date object (XMLGregorianCalendar) into an xsd:dateTime element. How can you specify the format of the …

datetime jaxb format marshalling milliseconds
What is Serialization?

I am getting started with Object-Oriented Programming (OOP) and would like to know: what is the meaning of serialization in …

java oop serialization marshalling
How do you serialize an object in C++?

I have a small hierarchy of objects that I need to serialize and transmit via a socket connection. I need …

c++ serialization marshalling c++-faq
Marshal C++ struct array into C#

I have the following struct in C++: #define MAXCHARS 15 typedef struct { char data[MAXCHARS]; int prob[MAXCHARS]; } LPRData; And a …

c# c++ interop struct marshalling
JAXB marshalling Java to output XML file

problem is how do i generate XML file output instead of system.out? package jaxbintroduction; import java.io.FileOutputStream; import …

java xml jaxb marshalling
Understanding JAXB @XmlRootElement annotation

I am using the tutorial here for understanding JAXB. When the writer comes to create the root of the document, …

java xml xsd jaxb marshalling
C++ .NET convert System::String to std::string

How do you convert System::String to std::string in C++ .NET?

.net c++ string marshalling