1
vote
3answers
64 views
Marshalling struct with embedded pointer from C# to unmanaged driver
Hi,
I'm trying to interface C# (.NET Compact Framework 3.5) with a Windows CE 6 R2 stream driver using P/Invoked DeviceIoControl() calls . For one of the IOCTL codes, the driver …
1
vote
0answers
17 views
MSDN RPC marshal document wrong?
Hello everyone,
I am using VSTS 2008 + Native C++ to develop RPC programs (both client and server). I am reading MSDN document for marshalling (The wire_marshal Attribute).
I thi …
0
votes
2answers
100 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-wri …
0
votes
1answer
46 views
Marshalling and converting VB6 code to .NET
I am having trouble converting some code from VB6 to VB.NET (I don't have as much experience with .NET). When I run the 'Select function (from the WS2_32.dll library) in .NET, usin …
0
votes
1answer
42 views
Marshalling strings, C++ to C#: ‘conversion is not supported by the library’
Summary:
When attempting to use marshalling to pass string data into a C++ DLL from C#, I'm getting
'msclr::interop::error_reporting_helper<_To_Type,_From_Type>::marshal_a …
1
vote
2answers
29 views
Marshalling structs from WM_COPYDATA messages
I am trying to get a C# WPF application to communicate with another application written in C using WM_COPYDATA. The C app is trying to send a struct as follows:
typedef struct
{
…
1
vote
3answers
82 views
Why does marshalling a struct of callback delegates cause an AccessViolationException
Introduction
I am trying to use P/Invoke to register a struct of callbacks with a native dll. When calling a function that makes the native dll invoke the callbacks an AccessViola …
4
votes
2answers
107 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 { …
3
votes
5answers
132 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 s …
0
votes
2answers
23 views
java.rmi.MarshalException
whenever I try to call my ejb from a client, I get this error :
java.rmi.MarshalException: Failed to communicate.
Problem during marshalling/unmarshalling; nested exce …
4
votes
3answers
165 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 t …
1
vote
1answer
56 views
How to marshal .NET string to variant for COM call
I'm using a third-party COM library from C#.
There are get/set methods that take a parameter of type VARIANT (type VT_BSTR).
In the .NET wrapper, these parameters appear as type o …
1
vote
1answer
120 views
Does C# have an equivalent to #pragma pack in C++?
C# provides StructLayoutAttribute.Pack, but its behaviour is "every member gets at least the specified alignment whether it wants it or not", whereas the behaviour of #pragma pack …
0
votes
1answer
33 views
System.AccessViolationException
Hi,
I am using a com DLL in the following manner:
#Region "API Function"
<DllImportAttribute("abc.dll", EntryPoint:="optcntl")> _
Public Shared Function optcntl(ByRe …
0
votes
1answer
83 views
Wrong timezone being used in Java web service
I have a JAX-B java web service which I'm using to update a database. Each row in the table that I'm updating is represented by an object similar to below: -
public class Item {
…
