2
votes
1answer
53 views
What Java type to use to represent a currency value in a web service?
I'm creating a web service in Java that will be consumed by an external application, probably written in C#. In my Purchase bean, I have a Currency object for the total cost. However, this leads to …
2
votes
3answers
133 views
+100
.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 …
0
votes
2answers
51 views
C function in VB.NET
I'm having some problems calling a C function from a DLL, and was hoping someone could help me out. The function is returning -101 which translates as a "bad parameter". The values I am passing have …
0
votes
1answer
42 views
Unsafe code and fixed statements with StringBuilder
I was wondering about how passing a String or a StringBuilder to a C function which output a string by parameter. I've found a great answer in
…
1
vote
4answers
63 views
P/Invoke problem marshalling parameter
It seems I have yet another problem in the understanding of marshalling to C++ DLL.
Here is the def of the C++ function & struct :
#define SIZE_PLATE (28l)
#define SIZE_HJT …
1
vote
4answers
183 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 …
0
votes
1answer
22 views
Having a hard time pinvoking with a byte array.
I have an unmanaged method in a DLL with the following signature:
extern "C" ErrorCodeEnum BuildSerialTriggerSetup(TriggerSetup_type sSetup, BYTE * pFPGACfgStream, UINT32 * piStreamLen)
I have a …
0
votes
2answers
20 views
How do I register a proxy/stub for a COM interface defined by a third party?
There's Another Company that ships the product that consumes IAnotherCompanyInterface. We want to ship a COM object that implements IAnotherCompanyInterface. That interface is not …
5
votes
8answers
438 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 …
3
votes
5answers
212 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 …
2
votes
3answers
87 views
Are double* and double** blittable types? C#
Hello,
I have a question regarding marshalling of C++ arrays to C#.
Does the double* automatically convert to double[]?
I know double is a blittable type, so double from C++ is the same as double …
1
vote
4answers
65 views
How do I unmarshal a ruby object in java?
I have a an object that I'd like to grab the contents of in java.
The only problem is that is is currently in ruby.
irb(main):050:0> blah
=> …
3
votes
3answers
96 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; …
1
vote
5answers
119 views
Marshalling an array of structures from C++ to C#
In my C# code I'm trying to fetch an array of structures from a legacy C++ DLL (the code I cannot change).
In that C++ code, the structure is defined like this:
struct MyStruct
{
char* id;
…
3
votes
6answers
2k 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. …
