Top "Marshalling" questions

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

Converting Java Object to Json using Marshaller

Its quite easy to convert a java object to XML by using Marshaller. But I need to convert a java …

java json jakarta-ee jaxb marshalling
Problem unmarshalling parcelables

I've got a few classes that implement Parcelable and some of these classes contain each other as properties. I'm marshalling …

java android marshalling parcelable
Lowercase JSON key names with JSON Marshal in Go

I wish to use the "encoding/json" package to marshal a struct declared in one of the imported packages of …

json go serialization tags marshalling
how to marshal a JAXB object to org.w3c.dom.Document?

This gives me a Document object with a top level node with no child nodes: public static Document getDocument(Object …

java xml dom jaxb marshalling
What is marshalling? What is happening when something is "marshalled?"

I know this question has been asked, at least here. But there wasn't a satisfactory answer, at least not to …

.net multithreading marshalling definition language-interoperability
C# - How To Convert Object To IntPtr And Back?

I want to pass an object from managed code to a WinApi function as IntPtr. It will pass this object …

c# winapi callback marshalling intptr
Marshal "char *" in C#

Given the following C function in a DLL: char * GetDir(char* path ); How would you P/Invoke this function into …

.net pinvoke marshalling
json.Marshal(struct) returns "{}"

type TestObject struct { kind string `json:"kind"` id string `json:"id, omitempty"` name string `json:"name"` email string `json:"email"` } …

json go marshalling
How do I GetCustomAttributes?

I have tried the following code using the 2.0 framework and I get an attribute back, but when I try this …

c# compact-framework attributes marshalling getcustomattributes