Tagged Questions
Marshalling is the process of transforming the memory representation of an object to a data format suitable for storage or transmission
28
votes
15answers
22k views
Json <-> Java serialization that works with GWT
I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. ...
23
votes
6answers
6k views
What is the difference between Serialization and Marshalling?
I know that in terms of several distributed techniques like RPC the term Marshalling is used, but I don't get the difference with Serialization. It both is transforming objects to series of bits no?
...
20
votes
6answers
12k views
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 to both serialize the object, then deserialize it based on what type it is. Is there an easy ...
17
votes
6answers
8k views
Reading a C/C++ data structure in C# from a byte array
What would be the best way to fill a C# struct from a byte[] array where the data was from a C/C++ struct? The C struct would look something like this (my C is very rusty):
typedef OldStuff { ...
16
votes
6answers
395 views
Good examples, articles and books on marshalling [closed]
While working on a software protection library for smart card based dongle I realized I need to transfer some tree-like data structures back and forth between client application and code inside the ...
14
votes
7answers
750 views
Calling COM visible managed component from managed code through COM wrapper
I have a 3rd party component, lets say FIPreviewHandler to handle preview, which implements IPreviewHandler. FIPreviewHandler is implemented as a Managed Component, and uses the IPreviewHandler ...
14
votes
3answers
11k views
JAXB Marshalling with null fields
This is a pretty simple request, but I just didn't find a way to do it.
I'm basically trying to set up a role in JAXB which says that whenever an null field is encountered, instead of ignoring it in ...
13
votes
5answers
689 views
Why it is called Marshalling? [closed]
Possible Duplicate:
Why is the concept of Marshalling called as such?
Why the conversion between two types is called Marshalling! What is the meaning behind Marshal, why we don't just use ...
13
votes
4answers
363 views
Why is the concept of Marshalling called as such?
I've always thought that the concept of Marshalling had a bit of a funny name.
My mental conception of the process would always involve an ol' wildwest gunslinging marshall who would coerce objects ...
12
votes
5answers
366 views
Precise definition of the term 'marshalling'
In the .NET world, does marshalling mean just the preparation of an object/data for transfer across some boundary or over a wire OR does it mean the preparation and transfer across a boundary or over ...
12
votes
9answers
3k views
What is object marshalling?
I have heard this concept used frequently, but I don't have a really good grasp of what it is.
11
votes
3answers
2k views
Why is marshal so much faster than pickle?
From this question and my own benchmarks it seems that the marshal module is about 20-30x faster than cPickle. Why is this so? What functionality does cPickle offer over marshal that justifies this? ...
10
votes
1answer
391 views
P/Invoke, c#: unsigned char loosing a byte
Im working towards a dll file for a software's SDK and i'm trying to call a function to get information about the host of the software.
there are two unsigned char variables(HostMachineAddress, ...
10
votes
3answers
3k views
C# P/Invoke: Marshalling structures containing function pointers
Sorry for the verbose introduction that follows. I need insight from someone knowing P/Invoke internals better than I do.
Here is how I'm marshalling structures containing function pointers from C to ...
9
votes
1answer
144 views
Detecting cross-thread marshaling by COM RCW objects in C#
I'm working in a large multithreaded C# application handling bunches of COM interop. The other developers and I have ample opportunity to accidentally call Single-Threaded Apartment (STA) COM objects ...
9
votes
2answers
342 views
Marshalling a char** in C#
I am interfacing with code that takes a char** (that is, a pointer to a string):
int DoSomething(Whatever* handle, char** error);
Basically, it takes a handle to its state, and if something goes ...
9
votes
4answers
6k views
C++ .NET convert System::String to std::string
How do you convert System::String to std::string in C++ .NET?
8
votes
3answers
174 views
Why do C# and VB.NET implicitly marshal char* differently?
So I have a function, written in C++, that looks like this...
extern "C" __declspec(dllexport) int __stdcall SomeFunction(char *theData)
{
// stuff
}
... and I'm using it in my current project ...
8
votes
4answers
435 views
Why can't I return a char* string from C++ to C# in a Release build?
I'm attempting to call the following trivial C function from C#:
SIMPLEDLL_API const char* ReturnString()
{
return "Returning a static string!";
}
With the following P/Invoke declaration (with ...
8
votes
6answers
987 views
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 me. There is a lot of talk about marshalling as regards interoperating with unmanaged code, ...
8
votes
3answers
767 views
Marshalling/unmarshalling XML in Scala
I am looking at various approaches for marshalling/unmarshalling data between Scala and XML, and I'm interested in getting community feedback (preferably grounded in first-hand knowledge/experience).
...
8
votes
2answers
338 views
Marshal ruby hash with default proc - remove the default proc?
I've got a Hash with a default proc that I'd like to to Marshal to a file, but the default proc prevents me from doing that.
Rather than writing my own _dump and _load methods, is it possible instead ...
8
votes
2answers
838 views
How to read a Delphi Array of Fixed Sized Strings within a packed record in c#
I need to read a blob field from a database into a c# app.
However the blob field was written to the database by a Delphi App using the following method:
procedure WriteABlob(Blob : TBlobField; var ...
8
votes
6answers
6k views
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 the classes into a Parcel to pass them between activities. Marshalling them ...
8
votes
1answer
5k views
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 on the compact framework, it always returns an empty array. The MSDN documenation says its ...
8
votes
4answers
27k views
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 function that I'm p/invoking into to get an array of 3 ...
8
votes
2answers
13k views
Marshal “char *” in C#
Given the following C function in a DLL:
char * GetDir(char* path );
How would you P/Invoke this function into C# and marshal the char * properly.
.NET seems to know how to do LPCTSTR but when I ...
7
votes
3answers
1k views
C# Marshalling double* from C++ DLL?
I have a C++ DLL with an exported function:
extern "C" __declspec(dllexport) double* fft(double* dataReal, double* dataImag)
{
[...]
}
The function calculates the FFT of the two double arrays ...
7
votes
2answers
525 views
How to marshal structs with unknown length string fields in C#
I get an array of bytes, I need to unmarshal it to C# struct.
I know the type of the struct, it has some strings fields.
The strings in the byte array appears as so: two first bytes are the length of ...
7
votes
4answers
469 views
Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Consider the following code (a console app which must be compiled with "unsafe" enabled):
using System;
using ...
7
votes
1answer
533 views
When to use RelaseComObject vs FinalReleaseComObject?
When should I use Marshal.FinalReleaseComObject vs Marshal.ReleaseComObject?
Is there any danger in using Marshal.FinalReleaseComObject?
7
votes
6answers
189 views
P/Invoke: How to know which type to marshall from?
Is there a one-stop shop for determining which .Net types/attributes to use, given a native type?
Example would look something like this:
Native Type | .Net Type
...
7
votes
3answers
570 views
Fastest way to access VB6 String in C#
I am using COM Interop. I have a call in VB6 which returns a string of roughly 13000 chars. If I execute the call in pure VB6 it takes about 800ms to execute. If I execute it via c# and COM Interop it ...
7
votes
4answers
380 views
Marshalling what is it and why do we need it?
What is marshalling and why do we need it.
I find it hard to believe that i cannot send an int over the wire from c# to c and have to marshall it. Why cant c# just send the 32bits over with a ...
7
votes
3answers
400 views
Layout of .NET value type in memory
I have the following .NET value types:
[StructLayout(LayoutKind.Sequential)]
public struct Date
{
public UInt16 V;
}
[StructLayout(LayoutKind.Sequential)]
public struct StringPair
{
public ...
6
votes
2answers
72 views
What's the difference between HandleRef and GCHandle?
What's the difference between HandleRef and GCHandle?
http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.handleref.aspx
...
6
votes
2answers
85 views
if GetFields() doesn't guarantee order, how does LayoutKind.Sequential work
I need to get fieldinfo in a guaranteed order with respect to declaration order. Right now I'm using attributes to specify order.
Is there a more automatic way of doing this?
Does anyone have ...
6
votes
3answers
203 views
Why does dumping and loading a Hash using Marshal in Ruby throw a FormatError?
I'm running Ruby installed from RubyInstaller. Here's the version:
C:\Users\Sathya>ruby -v
ruby 1.9.2p290 (2011-07-09) [i386-mingw32]
Here's the exact code, which is throwing the error:
...
6
votes
1answer
176 views
What OCaml standard library types cannot be marshalled?
I have a failure Marshaling a data structure (error abstract type (Custom)). There is one known abstract type in use, namely Big_int. However that Marshals fine. There is no custom C code in the ...
6
votes
3answers
288 views
Correct usage of DllImport
Suppose there is a c++ method int NativeMethod(double, double *) in a Native.dll. My first attempt at calling this method from managed code was (assuming I don't need to specify the entry point)
...
6
votes
3answers
433 views
Exposing a C++ API to C#
So what I have is a C++ API contained within a *.dll and I want to use a C# application to call methods within the API.
So far I have created a C++ / CLR project that includes the native C++ API and ...
6
votes
2answers
555 views
Marshal.PtrToStringUni() vs new String()?
Suppose i have a pointer of type char* to unicode string, and i know the length:
char* _unmanagedStr;
int _unmanagedStrLength;
and i have 2 ways to convert it to .NET string:
...
6
votes
3answers
1k views
.NET Remoting Singleton memory leak, TCP, Marshal by Reference
I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine.
The service instantiates ...
6
votes
4answers
2k views
How can I prevent CompileAssemblyFromSource from leaking memory?
I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it ...
6
votes
7answers
2k views
Call unmanged Code from C# - returning a struct with arrays
[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.
Hi,
I'd like to call an unmanaged function in a self-written C++ dll. This ...
5
votes
2answers
92 views
Multiple function calls from C# to C++ unmanaged code causes AccessViolationException
I have declared a DLL import in my C# program that looks like this:
[DllImport("C:\\c_keycode.dll", EntryPoint = "generateKeyCode",
CallingConvention = CallingConvention.Cdecl)]
static ...
5
votes
2answers
150 views
Marshalling array of structs from .NET to C++: when does it do copying?
Consider a struct like System.Drawing.Point - one with LayoutKind.Sequential and containing only primitive members. I have a C# array of such structs.
I'm passing it to an (unmanaged) C++ function ...
5
votes
1answer
291 views
How to pass C# array to C++ and return it back to C# with additional items?
I have a C# project which is using a C++ dll. (in visual studio 2010)
I have to pass a array of int from C# code to C++ function and C++ function will add few elements in array, when control comes ...
5
votes
2answers
193 views
.NET Marshal.PtrToStringUni(IntPtr) vs. new String(char*)
What's the difference between new String(char*) and Marshal.PtrToStringUni(IntPtr), aside from the obvious fact that one takes char* and one takes IntPtr? When should I use which?
I remember getting ...
5
votes
2answers
269 views
JAXB - Suppress Boolean attribute if false
Let's say that I have a class
@XmlRootElement(name="thing")
public class Thing{
private String name;
private boolean awesome;
@XmlValue public void setName(String name) {
...