9
votes
5answers
165 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 …
8
votes
5answers
638 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?
…
7
votes
9answers
1k 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.
6
votes
5answers
2k 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 …
5
votes
3answers
241 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 …
5
votes
8answers
462 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 …
4
votes
2answers
143 views
Marshalling .NET generic types
Here is a C# program that tries Marshal.SizeOf on a few different types:
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
class AClass { }
…
4
votes
3answers
267 views
Can I force JAXB not to convert “ into ", for example, when marshalling to XML?
I have an Object that is being marshalled to XML using JAXB. One element contains a String that includes quotes ("). The resulting XML has " where the " existed.
Even though this is …
3
votes
2answers
80 views
Sending a struct from C++ to WPF using WM_COPYDATA
I have a native C++ application that, for the time being simply needs to send its command line string and current mouse cursor coordinates to a WPF application. The message is sent and received just …
3
votes
3answers
101 views
Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed?
First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works:
struct A
{
public bool bValue1;
public int iValue2; …
3
votes
5answers
162 views
Is it possible to force a string to be a specific size when defining a struct?
I am marshalling data between a C# and C++ application. In the C# application, I force the size of a string to be some size (say, 256 bytes). I would like to read in that exact same amount in C++ (I …
3
votes
2answers
125 views
C#/C++ interop - Need help defining my data structure
Hi,
I am working on a C# app that is trying to use functionality provided via a C++ DLL. I am having a bit of a hard time getting the DLLImport definitions to work right at the moment.
Here's the …
3
votes
5answers
219 views
interfacing erlang application with php
Hi,
I have a website built with PHP.
I have an Erlang application running as a daemon on the same server.
I need to call functions on the Erlang application from PHP and get back the result.
I've …
3
votes
3answers
421 views
C++ .NET convert System::String to std::string
How do you convert System::String to std::string in C++ .NET?
3
votes
3answers
313 views
How to get the GIT in Delphi 7?
I'm trying to get the Global Interface Table by using the following code (Delphi):
uses Comobj, ActiveX;
var
cGIT : IGlobalInterfaceTable = NIL;
const
CLSID_StdGlobalInterfaceTable: TGUID = …
