active questions tagged marshalling - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:46:59Zhttp://stackoverflow.com/feeds/tag/marshallinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807743/how-do-i-register-a-proxy-stub-for-a-com-interface-defined-by-a-third-party0How do I register a proxy/stub for a COM interface defined by a third party?sharptooth2009-11-27T09:46:22Z2009-11-28T16:39:43Z
<p>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 Automation-compatible, so the next easiest option to enable marshalling is using a proxy/stub. Another Company doesn't ship the proxy/stub and doesn't want to.</p>
<p>Compiling and registering the proxy/stub is not a problem by itself but consider the following situation. There's our company shipping a COM object implementing IAnotherCompanyInterface and the ThirdPartyCompany that does the same. So both components might end up being deployed on the same machine.</p>
<p>Proxy/stub registration is system-wide for an interface. How should their proxy/stub implementations co-reside?</p>
http://stackoverflow.com/questions/1799373/how-can-i-prevent-compileassemblyfromsource-from-leaking-memory1How can I prevent CompileAssemblyFromSource from leaking memory?Nogwater2009-11-25T19:24:12Z2009-11-27T16:29:06Z
<p>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 did before creating the assembly. My code is in a ASP.NET web app, but I've duplicated this problem in a WinForm. I'm using System.GC.GetTotalMemory(true) and Red Gate ANTS Memory Profiler to measure the growth (about 600 bytes with the sample code).</p>
<p>From the searching I've done, it sounds like the leak comes from the creation of new types, not really from any objects that I'm holding references to. Some of the web pages I've found have mentioned something about AppDomain, but I don't understand. Can someone explain what's going on here and how to fix it?</p>
<p>Here's some sample code for leaking:</p>
<pre><code>private void leak()
{
CSharpCodeProvider codeProvider = new CSharpCodeProvider();
CompilerParameters parameters = new CompilerParameters();
parameters.GenerateInMemory = true;
parameters.GenerateExecutable = false;
parameters.ReferencedAssemblies.Add("system.dll");
string sourceCode = "using System;\r\n";
sourceCode += "public class HelloWord {\r\n";
sourceCode += " public HelloWord() {\r\n";
sourceCode += " Console.WriteLine(\"hello world\");\r\n";
sourceCode += " }\r\n";
sourceCode += "}\r\n";
CompilerResults results = codeProvider.CompileAssemblyFromSource(parameters, sourceCode);
Assembly assembly = null;
if (!results.Errors.HasErrors)
{
assembly = results.CompiledAssembly;
}
}
</code></pre>
<p><strong>Update 1:</strong> This question may be related: <a href="http://stackoverflow.com/questions/1162686/dynamically-loading-and-unloading-a-a-dll-generated-using-csharpcodeprovider">Dynamically loading and unloading a a dll generated using CSharpCodeProvider </a></p>
<p><strong>Update 2:</strong> Trying to understand application domains more, I found this: <a href="http://codebetter.com/blogs/raymond.lewallen/archive/2005/04/03/61190.aspx" rel="nofollow">What is an application domain - an explanation for .Net beginners</a></p>
<p><strong>Update 3:</strong> To clarify, I'm looking for a solution that provides the same functionality as the code above (compiling and providing access to generated code) without leaking memory. It looks like the solution will involve creating a new AppDomain and marshaling.</p>
http://stackoverflow.com/questions/1650763/call-unmanged-code-from-c-returning-a-struct-with-arrays5Call unmanged Code from C# - returning a struct with arraysrdoubleui2009-10-30T16:10:22Z2009-11-24T15:29:01Z
<p>[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.</p>
<p>Hi, </p>
<p>I'd like to call an unmanaged function in a self-written C++ dll. This library reads the machine's shared memory for status information of a third party software. Since there are a couple of values, I'd like to return the values in a struct. However, within the struct there are <code>char []</code> (Arrays of char with a fixed size). I now try to receive that struct from the dll call like this:</p>
<pre><code>[StructLayout(LayoutKind.Sequential)]
public struct SYSTEM_OUTPUT
{
UInt16 ReadyForConnect;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
String VersionStr;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
String NameOfFile;
// actually more of those
}
public partial class Form1 : Form
{
public SYSTEM_OUTPUT output;
[DllImport("testeshm.dll", EntryPoint="getStatus")]
public extern static int getStatus(out SYSTEM_OUTPUT output);
public Form1()
{
InitializeComponent();
}
private void ReadSharedMem_Click(object sender, EventArgs e)
{
try
{
label1.Text = getStatus(out output).ToString();
}
catch (AccessViolationException ave)
{
label1.Text = ave.Message;
}
}
}
</code></pre>
<p>I will post code from the c++ dll as well, I'm sure there's more to hunt down. The original struct <code>STATUS_DATA</code> has an array of four instances of the struct <code>SYSTEM_CHARACTERISTICS</code> and within that struct there are <code>char[]</code>s, that are not being filled (yet), resulting in a bad pointer. That's why I'm trying to extract a subset of the first <code>SYSTEM_CHARACTERISTICS</code> item in <code>STATUS_DATA</code>.</p>
<pre><code>#include <windows.h>
#include <stdio.h>
#include <conio.h>
#include <tchar.h>
#include <iostream>
#if defined(_MSC_VER)
#include <windows.h>
#define DLL extern "C" __declspec(dllexport)
#else
#define DLL
#endif
using namespace std;
enum { SYSID_LEN = 1024, VERS_LEN = 128, SCENE_LEN = 1024 };
enum { MAX_ENGINES = 4 };
struct SYSTEM_CHARACTERISTICS
{
unsigned short ReadyForConnect;
char VizVersionStr[VERS_LEN];
char NameOfFile[SCENE_LEN];
char Unimplemented[SCENE_LEN]; // not implemented yet, resulting to bad pointer, which I want to exclude (reason to have SYSTEM_OUTPUT)
};
struct SYSTEM_OUTPUT
{
unsigned short ReadyForConnect;
char VizVersionStr[VERS_LEN];
char NameOfFile[SCENE_LEN];
};
struct STATUS_DATA
{
SYSTEM_CHARACTERISTICS engine[MAX_ENGINES];
};
TCHAR szName[]=TEXT("E_STATUS");
DLL int getStatus(SYSTEM_OUTPUT* output)
{
HANDLE hMapFile;
STATUS_DATA* pBuf;
hMapFile = OpenFileMapping(
FILE_MAP_READ, // read access
FALSE, // do not inherit the name
szName); // name of mapping object
if (hMapFile == NULL)
{
_tprintf(TEXT("Could not open file mapping object (%d).\n"),
GetLastError());
return -2;
}
pBuf = (STATUS_DATA*) MapViewOfFile(hMapFile, FILE_MAP_READ, 0, 0, 0);
if (pBuf == NULL)
{
_tprintf(TEXT("Could not map view of file (%d).\n"),
GetLastError());
CloseHandle(hMapFile);
return -1;
}
output->ReadyForConnect = pBuf->engine[0].ReadyForConnect;
memcpy(output->VizVersionStr, pBuf->engine[0].VizVersionStr, sizeof(pBuf->engine[0].VizVersionStr));
memcpy(output->NameOfFile, pBuf->engine[0].NameOfFile, sizeof(pBuf->engine[0].NameOfFile));
CloseHandle(hMapFile);
UnmapViewOfFile(pBuf);
return 0;
}
</code></pre>
<p>Now I'm getting an empty <code>output</code> struct and the return value ist not 0 as intended. It is rather a changing number with seven digits, which leaves me puzzled... Have I messed up in the dll? If I make the unmanaged code executable and debug it, I can see, that <code>output</code> is being filled with the appropriate values.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1463470/interfacing-erlang-application-with-php2interfacing erlang application with phppablo2009-09-23T01:12:53Z2009-11-21T12:28:51Z
<p>Hi,</p>
<p>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.</p>
<p>I've found PHP/Erlang and over PHP modules but I can't install a PHP module on this server, I can only use PHP code.</p>
<p>The only way I know to solve it is run an Erlang web server locally that the PHP will be able to talk to.</p>
<p>Is there a better way to solve it?
If using a httpd server is the best way, what Erlang server should I use?
It should be as light as possible and doesn't need features like SSL and doesn't need to handle large load.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1766014/are-double-and-double-blittable-types-c2Are double* and double** blittable types? C#NumberFour2009-11-19T19:43:36Z2009-11-20T02:56:58Z
<p>Hello,</p>
<p>I have a question regarding marshalling of C++ arrays to C#.
Does the double* automatically convert to double[]?</p>
<p>I know double is a blittable type, so double from C++ is the same as double from C#.
And what about double**, does it convert to double[,] ?</p>
<p>I have the following unmanaged function:
int get_values(double** param,int sz)</p>
<p>where param is a pointer to array of doubles and sz it's size.</p>
<p>How can I DLLImport this function to C#?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1759371/how-do-i-unmarshal-a-ruby-object-in-java1How do I unmarshal a ruby object in java?feydr2009-11-18T21:55:23Z2009-11-19T17:25:43Z
<p>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.</p>
<pre><code>irb(main):050:0> blah
=> "BAh7ByIeYXV0aGVudGljYXRpb25fc3RyYXRlZ2llczAiCXVzZXJpBg%253D%253D-\
-0cdecf4edfaa5cbe4693c9fb83b204c1256a54a6"
irb(main):049:0> Marshal.load(Base64.decode64(blah))
=> {"authentication_strategies"=>nil, "user"=>1}
</code></pre>
<p>I got the base64 portion allright -- so now everything is in bytes. How would i access that 2nd string? I presume something can be done with jruby but I've never used it before and would have no clue where to start.</p>
<p>let me elaborate on my problem here.</p>
<p>1) these are cookies that I'm trying to share between a servlet on tomcat and a merb app on apache</p>
<p>2) I am not going to be storing them in the database. I have thought about using them in memcached but for other reasons I'd like to store them as cookies (yes I'm well aware of the security implications involved)</p>
<p>I am currently looking at jruby's Red Bridge/jruby-embed, however since this is only like 70 bytes I need to look at I think it's ridiculous to call up all that overhead for something so simple.</p>
<p>rather than start up a new question.... code I have right now looks like so:</p>
<pre><code> // using commons
Base64 b64 = new Base64();
byte[] decoded = b64.decode(cookie.getValue().getBytes());
ScriptingContainer container = new ScriptingContainer();
container.runScriptlet("la = Marshal.load(\"" + decoded + "\"); puts la.to_s;");
</code></pre>
<p>obviously this isn't going to work cause marshal is going to check the first 2 bytes of decoded and freak out since it doesn't match jruby's major/minor version....hrmss..</p>
http://stackoverflow.com/questions/1703759/boolean-marshalling-with-layoutkind-explicit-is-this-broken-or-failing-as-design3Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed?csharptest.net2009-11-09T20:56:23Z2009-11-18T19:31:25Z
<p>First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works:</p>
<pre><code> struct A
{
public bool bValue1;
public int iValue2;
}
struct B
{
public int iValue1;
public bool bValue2;
}
public static void Main()
{
int[] rawvalues = new int[] { 2, 4 };
A a = (A)Marshal.PtrToStructure(GCHandle.Alloc(rawvalues, GCHandleType.Pinned).AddrOfPinnedObject(), typeof(A));
Assert.IsTrue(a.bValue1 == true);
Assert.IsTrue(a.iValue2 == 4);
B b = (B)Marshal.PtrToStructure(GCHandle.Alloc(rawvalues, GCHandleType.Pinned).AddrOfPinnedObject(), typeof(B));
Assert.IsTrue(b.iValue1 == 2);
Assert.IsTrue(b.bValue2 == true);
}
</code></pre>
<p>Clearly these structures marshal independently just fine. The values are translated as expected. However, when we combine these structures into a "union" by declaring LayoutKind.Explicit like this:</p>
<pre><code> [StructLayout(LayoutKind.Explicit)]
struct Broken
{
[FieldOffset(0)]
public A a;
[FieldOffset(0)]
public B b;
}
</code></pre>
<p>We suddenly find ourselves unable to correctly marshal these types. Here is the test code for the above structure and how it fails:</p>
<pre><code> int[] rawvalues = new int[] { 2, 4 };
Broken broken = (Broken)Marshal.PtrToStructure(GCHandle.Alloc(rawvalues, GCHandleType.Pinned).AddrOfPinnedObject(), typeof(Broken));
Assert.IsTrue(broken.a.bValue1 != false);// pass, not false
Assert.IsTrue(broken.a.bValue1 == true);// pass, must be true?
Assert.IsTrue(true.Equals(broken.a.bValue1));// FAILS, WOW, WTF?
Assert.IsTrue(broken.a.iValue2 == 4);// FAILS, a.iValue1 == 1, What happened to 4?
Assert.IsTrue(broken.b.iValue1 == 2);// pass
Assert.IsTrue(broken.b.bValue2 == true);// pass
</code></pre>
<p>It's very humorous to see this express as true: (a.bValue1 != false && a.bValue1 == true && !true.Equals(a.bValue1))</p>
<p>Of course the bigger problem here is that a.iValue2 != 4, rather the 4 has been changed to 1 (presumably by the overlapped bool). </p>
<p><strong>So the question: Is this a bug, or just failed as designed?</strong></p>
<p>Background: this came from <a href="http://stackoverflow.com/questions/1602899"> <a href="http://stackoverflow.com/questions/1602899">http://stackoverflow.com/questions/1602899</a></a></p>
<p>Update: This is even stranger when you use large integer values (> 255) as only the byte that is used for the boolean is being modified to a 1, thus changing 0x0f00 to 0x0f01 for the b.bValue2. For a.bValue1 above it's not translated at all and 0x0f00 provides a false value for a.bValue1.</p>
<p>Update #2:</p>
<p>The most obvious and reasonable solution to the above issue(s) is to use a uint for the marshalling and expose boolean properties instead. Really solving the issue with a 'workaround' is not at question. I'm mostly wondering is this a bug or is this the behavior you would expect?</p>
<pre><code> struct A
{
private uint _bValue1;
public bool bValue1 { get { return _bValue1 != 0; } }
public int iValue2;
}
struct B
{
public int iValue1;
private uint _bValue2;
public bool bValue2 { get { return _bValue2 != 0; } }
}
</code></pre>
http://stackoverflow.com/questions/1748169/marshalling-an-array-of-structures-from-c-to-c1Marshalling an array of structures from C++ to C#vladimir2009-11-17T11:16:08Z2009-11-18T08:28:44Z
<p>In my C# code I'm trying to fetch an array of structures from a legacy C++ DLL (the code I cannot change).</p>
<p>In that C++ code, the structure is defined like this:</p>
<pre><code>struct MyStruct
{
char* id;
char* description;
};
</code></pre>
<p>The method that I'm calling (get_my_structures) returns a pointer to an array of MyStruct structures:</p>
<pre><code>MyStruct* get_my_structures()
{
...
}
</code></pre>
<p>There is another method that returns the number of stuctures so I do know how many structures get returned.</p>
<p>In my C# code, I have defined MyStruct like this:</p>
<pre><code>[StructLayout(LayoutKind.Sequential)]
public class MyStruct
{
[MarshalAsAttribute(UnmanagedType.LPStr)] // <-- also tried without this
private string _id;
[MarshalAsAttribute(UnmanagedType.LPStr)]
private string _description;
}
</code></pre>
<p>The interop signature looks like this: </p>
<pre><code>[DllImport("legacy.dll", EntryPoint="get_my_structures")]
public static extern IntPtr GetMyStructures();
</code></pre>
<p>Finally, the code that fetches the array of MyStruct structures looks like this:</p>
<pre><code>int structuresCount = ...;
IntPtr myStructs = GetMyStructures();
int structSize = Marshal.SizeOf(typeof(MyStruct)); // <- returns 8 in my case
for (int i = 0; i < structuresCount; i++)
{
IntPtr data = new IntPtr(myStructs.ToInt64() + structSize * i);
MyStruct ms = (MyStruct) Marshal.PtrToStructure(data, typeof(MyStruct));
...
}
</code></pre>
<p>The trouble is, only the very first structure (one at the offset zero) gets marshaled correctly. Subsequent ones have bogus values in _id and _description members. The values are not completely trashed, or so it seems: they are strings from some other memory locations. The code itself does not crash.</p>
<p>I have verified that the C++ code in get_my_structures() does return correct data. The data is not accidentally deleted or modified during or after the call. </p>
<p>Viewed in a debugger, C++ memory layout of the returned data looks like this:</p>
<pre><code>0: id (char*) <---- [MyStruct 1]
4: description (char*)
8: id (char*) <---- [MyStruct 2]
12: description (char*)
16: id (char*) <---- [MyStruct 3]
...
</code></pre>
<p><strong>[Update 18/11/2009]</strong></p>
<p>Here is how the C++ code prepares these structures (the actual code is much uglier, but this is a close enough approximation):</p>
<pre><code>static char buffer[12345] = {0};
MyStruct* myStructs = (MyStruct*) &buffer;
for (int i = 0; i < structuresCount; i++)
{
MyStruct* ms = <some other permanent address where the struct is>;
myStructs[i].id = (char*) ms->id;
myStructs[i].description = (char*) ms->description;
}
return myStructs;
</code></pre>
<p>Admittedly, the code above does some ugly casting and copies raw pointers around, but it still does seem to do that correctly. At least that's what I see in the debugger: the above (static) buffer does contain all these naked char* pointers stored one after another, and they point to valid (non-local) locations in memory.</p>
<p>Pavel's example shows that this is really the only place where things can go wrong. I will try to analyze what happens with those 'end' locations where the strings really are, not the locations where the pointers get stored.</p>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt3Json <-> Java serialization that works with GWTamartynov2009-03-25T19:40:40Z2009-11-17T19:11:53Z
<p>I am looking for a <em>simple</em> 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. Quite a boring. Why don't we have something really simple like</p>
<pre><code>class MyBean {
...
}
new GoodSerializer().makeString(new MyBean());
new GoodSerializer().makeObject("{ ... }", MyBean.class)
</code></pre>
http://stackoverflow.com/questions/1272099/marshalling-out-array-of-user-defined-type-between-vb6-and-net0Marshalling out array of user-defined type between VB6 and .netIlya Komakhin2009-08-13T13:51:04Z2009-11-14T13:00:01Z
<p>Hello,</p>
<p>I'm creating a COM callable .net assembly and now trying to use it from legacy COM clients (VB6 client in my case).</p>
<p>Assembly should expose API style interface, so typical function declaration would look like this: </p>
<pre><code>int myRoutine (object inParam, out object result);
</code></pre>
<p>The problem is when I trying to use function declared as: </p>
<pre><code>int GetMultipleItems (out ItemData[] itemList);
</code></pre>
<p>In VB6 this translated to function that have array to be passed as parameter which fails when I'm calling it with 'Invalid procedure call or argument'.</p>
<p>Actual call looks like: </p>
<pre><code>Dim items() As ItemData
result = SCServer.GetMultipleItems (items)
</code></pre>
<p>Investigated further, I tried several different ways of marking up my library with MarshalAs attributes. From my point of view, the problem is argument has to be array to be passed in and - on the other hand - a variant to be returned to VB code.</p>
<p>After several experiments, I got following to work (1): </p>
<pre><code>int GetMultipleItems ([Out, MarshalAs (UnmanagedType.SafeArray,
SafeArraySubType = VarEnum.VT_DISPATCH)]out object[] itemList);
</code></pre>
<p>(having items() declared as Object at the client side). </p>
<p>But I have to use exactly my initial signature (2), </p>
<pre><code>int GetMultipleItems ([Out, MarshalAs (UnmanagedType.SafeArray,
SafeArraySubType = VarEnum.VT_DISPATCH)]out ItemData[] itemList);
</code></pre>
<p>Which does not work either with Object or with ItemData array type declaration at client.</p>
<p>So, questions are:<br />
- why (1) works while (2) not. What should I change in attribute declaration or in client to get to work with my actual type in signature (it exposes an interface which has been exported to tlb as well, so seems all should be OK here)<br />
- what is recommended way to define sugh [out] parameter arrays<br />
- maybe I lack some essential reading, I would be grateful for the links... still I need to get the sample working in a day or two. </p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1725718/copy-bytes-in-memory-to-an-array-in-vb-net2Copy bytes in memory to an Array in VB.NETDavid Rutten2009-11-12T22:01:11Z2009-11-12T23:20:58Z
<p>Hello,</p>
<p>unfortunately I cannot resort to C# in my current project, so I'll have to solve this without the <em>unsafe</em> keyword.</p>
<p>I've got a bitmap, and I need to access the pixels and channel values directly. I'd like to go beyond Marshal.ReadByte() and Marshal.WriteByte() (and <em>definitely</em> beyond GetPixel and SetPixel).</p>
<p>Is there a way to put all the pixel data of the bitmap into a Byte array that works on both 32 and 64 bit systems? I want the exact same layout as the original bitmap, so the padding for each row (if it exists) also needs to be included.</p>
<p>Marshal doesn't seem to have something akin to:</p>
<pre><code>byte[] ReadBytes(IntPtr start, int offset, int count)
</code></pre>
<p>Unless I totally missed it...</p>
<p>Any help greatly appreciated,
David</p>
<p>ps. So far all my images are in 32BppPArgb pixelformat.</p>
http://stackoverflow.com/questions/1713288/c-passing-array-of-strings-to-a-c-dll0C#: passing array of strings to a C++ DLLMartin2009-11-11T05:42:50Z2009-11-11T06:07:10Z
<p>I'm trying to pass some strings in an array to my C++ DLL.<br></p>
<p>The C++ DLL's function is:</p>
<pre><code>extern "C" _declspec(dllexport) void printnames(char** ppNames, int iNbOfNames)<br>
{<br>
for(int iName=0; iName < iNbOfNames; iName++)
{
OutputDebugStringA(ppNames[iName]);
}
}
</code></pre>
<p>And in C#, I load the function like this: </p>
<pre><code>[DllImport("MyDLL.dll", CallingConvention = CallingConvention.StdCall)]
static extern void printnames(StringBuilder[] astr, int size);<br>
</code></pre>
<p>Then I setup/call the function like so:</p>
<pre><code>List<string> names = new List<string>();
names.Add("first");
names.Add("second");
names.Add("third");
StringBuilder[] astr = new StringBuilder[20];
astr[0] = new StringBuilder();
astr[1] = new StringBuilder();
astr[2] = new StringBuilder();
astr[0].Append(names[0]);
astr[1].Append(names[1]);
astr[2].Append(names[2]);
printnames(astr, 3);
</code></pre>
<p>Using DbgView, I can see that some data is passed to the DLL, but it's printing out garbage instead of "first", "second" and "third".<br></p>
<p>Any clues?</p>
http://stackoverflow.com/questions/1711895/c-calling-c-dll-with-char-argument1C#: calling C++ DLL with char** argumentMartin2009-11-10T23:07:06Z2009-11-11T01:07:06Z
<p>I would like to call this C++ function from my C# code:</p>
<pre><code>void GetArrayOfNames(char** names, int nbOfNames);
</code></pre>
<p>To call it in C++, I just define an array of char*:<br></p>
<pre><code>char* aNames[20];
</code></pre>
<p>And allocate each name in a loop:<br></p>
<pre><code>for(int i-0; i<20; i++)
{
aNames[i] = new char[50];
}
</code></pre>
<p>Then call: <br></p>
<pre><code>GetArrayOfNames(aNames, 20);
</code></pre>
<p>In my C# code, I have:<br></p>
<pre><code>[DllImport("MyDLL.dll")]
unsafe static extern void GetArrayOfNames(char** ppNames, int nbOfNames);
</code></pre>
<p>Now, how do I do the memory allocation and call GetArrayOfNames? Also, any way of not having to declare my function as "unsafe"?</p>
http://stackoverflow.com/questions/1681078/msdn-rpc-marshal-document-wrong1MSDN RPC marshal document wrong?George22009-11-05T14:58:01Z2009-11-10T17:01:58Z
<p>Hello everyone,</p>
<p>I am using VSTS 2008 + Native C++ to develop RPC programs (both client and server). I am reading MSDN document for marshalling (<a href="http://msdn.microsoft.com/en-us/library/aa378976%28VS.85%29.aspx" rel="nofollow">The wire_marshal Attribute</a>).</p>
<p>I think this sentence is wrong: </p>
<blockquote>
<p>"For an [out]-only parameter, the server transmits to the client. The server needs the
<type>_UserSize and <type>_UserMarshal functions, while the client needs the
<type>_UserMarshal function.". </p>
</blockquote>
<p>I think when using <code>[out]</code> parameter, for client, it needs to convert from transmission type to application representation type -- which should be the unmarshal process (other than marshal process).<br>
So, I think the sentence should say <em>"while the client needs the <type>_UserUnmarshal function"</em> other than <em>"<type>_UserMarshal".</em></p>
<p>Any comments? Am I correct?</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/1637914/marshalling-structs-from-wmcopydata-messages1Marshalling structs from WM_COPYDATA messagesPhil2009-10-28T15:13:06Z2009-11-10T14:43:39Z
<p>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:</p>
<pre><code>typedef struct
{
int x;
int y;
char str[40];
double d;
char c;
} DATASTRUCT;
</code></pre>
<p>In my C# app I have defined a struct as follows:</p>
<pre><code>[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)]
public struct DATASTRUCT
{
public int x;
public int y;
[MarshalAs(UnmanagedType.LPStr, SizeConst=40)]
public string s;
public double d;
public char c;
};
</code></pre>
<p>And the code to receive the WM_COPYDATA message is as follows:</p>
<pre><code>private void Window_Loaded(object sender, RoutedEventArgs e)
{
hwndSource = HwndSource.FromHwnd(new WindowInteropHelper(this).Handle);
hwndSource.AddHook(new HwndSourceHook(WndProc));
}
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
if (msg == 0x4A)
{
DATASTRUCT data = (DATASTRUCT)Marshal.PtrToStructure(lParam, typeof(DATASTRUCT));
this.updateText(data);
handled = true;
}
return (IntPtr)0;
}
</code></pre>
<p>I am receiving messages from the C application, but all the data in the struct is gibberish. Previous to this I was able to manually extract an array of bytes from the lParam pointer and then use System.BitConverter and System.Text.Encoding.ACII to interpret the byte array, and that worked pretty well. But now I am trying to do it in a cleaner way and it's just not working.</p>
http://stackoverflow.com/questions/1704790/c-buffer-corruption-with-marshal-copy0C# - Buffer Corruption with Marshal.Copy()chaoticprog2009-11-10T00:03:11Z2009-11-10T00:09:47Z
<p>I am receiving an IntPtr and an int specifying the number of bytes it points to. The data can contain any characters including null, EOL, etc. When trying the following, the buffer is corrupted:</p>
<pre><code>//buffer is the IntPtr
//count is the number of bytes in 'buffer'
byte[] test = new byte[count];
Marshal.Copy(buffer, test, 0, count);
IntPtr ptr = IntPtr.Zero;
ptr = Marshal.AllocCoTaskMem(count);
Marshal.Copy(test, 0, ptr, count);
</code></pre>
<p>I would assume 'buffer' and 'ptr' would be pointing to the same buffer blob in different memory locations but they don't (I am just copying the same data to another mem location AFAIK). However, 'ptr' seems to point to an arbitrary memory location as it contains string references to DLL modules.</p>
<p>Any ideas? Thanks!</p>
http://stackoverflow.com/questions/70501/exposing-nested-arrays-to-com-from-net0Exposing nested arrays to COM from .NETbzlm2008-09-16T08:55:38Z2009-11-08T13:41:27Z
<p>I have a method in .NET (C#) which returns string[][]. When using RegAsm or TlbExp (from the .NET 2.0 SDK) to create a COM type library for the containing assembly, I get the following warning:</p>
<blockquote>
<p>WARNING: There is no marshaling support for nested arrays.</p>
</blockquote>
<p>This warning results in the method in question not being exported into the generated type library. I've been told there's ways around this using Variant as the COM return type, and then casting/etc on the COM client side. For this particular assembly, the target client audience is VB6. <b>But how do you actually do this on the .NET side?</b></p>
<p><i>Note</i>: I have an existing legacy DLL (with its exported type library) where the return type is Variant, but this DLL (and the .tlb) is generated using pre-.NET legacy tools, so I can't use them. </p>
<p>Would it help at all if the assembly was written in VB.NET instead?</p>
http://stackoverflow.com/questions/1569153/why-does-marshalling-a-struct-of-callback-delegates-cause-an-accessviolationexcep1Why does marshalling a struct of callback delegates cause an AccessViolationExceptionRyan2009-10-14T21:37:37Z2009-11-06T04:11:56Z
<h1>Introduction</h1>
<p>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 AccessViolationException occurs. I have constructed a "small" test case that demonstrates the behavior comprised of 2 files, native.cpp that compiles into native.dll and clr.cs that compiles into the executable.</p>
<h1>native.cpp</h1>
<pre><code>
extern "C" {
typedef void (*returncb)(int i);
typedef struct _Callback {
int (*cb1)();
int (*cb2)(const char *str);
void (*cb3)(returncb cb, int i);
} Callback;
static Callback *cbStruct;
__declspec(dllexport) void set_callback(Callback *cb) {
cbStruct = cb;
std::cout << "Got callbacks: " << std::endl <<
"cb1: " << std::hex << cb->cb1 << std::endl <<
"cb2: " << std::hex << cb->cb2 << std::endl <<
"cb3: " << std::hex << cb->cb3 << std::endl;
}
void return_callback(int i) {
std::cout << "[Native] Callback from callback 3 with input: " << i << std::endl;
}
__declspec(dllexport) void exec_callbacks() {
std::cout << "[Native] Executing callback 1 at " << std::hex << cbStruct->cb1 << std::endl;
std::cout << "[Native] Result: " << cbStruct->cb1() << std::endl;
std::cout << "[Native] Executing callback 2 at " << std::hex << cbStruct->cb2 << std::endl;
std::cout << "[Native] Result: " << cbStruct->cb2("2") << std::endl;
std::cout << "[Native] Executing callback 3 with input 3 at " << std::hex << cbStruct->cb3 << std::endl;
cbStruct->cb3(return_callback, 3);
std::cout << "[Native] Executing callback 3 with input 4 at " << std::hex << cbStruct->cb3 << std::endl;
cbStruct->cb3(return_callback, 4);
}
}
</code></pre>
<h1>clr.cs</h1>
<pre><code>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace clr {
public delegate void returncb(Int32 i);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int cb1();
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int cb2(string str);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void cb3(returncb cb, Int32 i);
[StructLayout(LayoutKind.Sequential)]
struct Callback {
[MarshalAs(UnmanagedType.FunctionPtr)]
public cb1 c_cb1;
[MarshalAs(UnmanagedType.FunctionPtr)]
public cb2 c_cb2;
[MarshalAs(UnmanagedType.FunctionPtr)]
public cb3 c_cb3;
}
class Program {
static int cb1Impl() {
Console.WriteLine("[Managed] callback 1");
return 1;
}
static int cb2Impl(string c) {
Console.WriteLine("[Managed] callback 2");
return int.Parse(c);
}
static void cb3Impl(returncb cb, Int32 i) {
Console.WriteLine("[Managed] callback 3");
Console.WriteLine("[Managed] Executing callback to native.");
cb(i);
}
[DllImport("native.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void set_callback(ref Callback cb);
[DllImport("native.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void exec_callbacks();
static void Main(string[] args) {
Callback cb;
cb.c_cb1 = new cb1(cb1Impl);
cb.c_cb2 = new cb2(cb2Impl);
cb.c_cb3 = new cb3(cb3Impl);
Console.WriteLine("Beginning test.");
Console.WriteLine("Sending callbacks: ");
Console.WriteLine("cb1: " + Marshal.GetFunctionPointerForDelegate(cb.c_cb1));
Console.WriteLine("cb2: " + Marshal.GetFunctionPointerForDelegate(cb.c_cb1));
Console.WriteLine("cb3: " + Marshal.GetFunctionPointerForDelegate(cb.c_cb1));
set_callback(ref cb);
exec_callbacks();
Console.ReadLine();
}
}
}
</code></pre>
<h1>Result</h1>
<p>Invoking this results in exec_callbacks() throwing an AccessViolationException. cb1 is successfully invoked, but cb2 is not. Furthermore, the native code shows that before cb2 is called, its address has changed. Why does this occur? To the best of my knowledge, none of the delegates should have been gc'ed. As additionally information, marshalling a struct of IntPtr's and using Marshal.GetFunctionPtrForDelegate works correctly (even for cb3 which gets a native ptr to invoke), however, being able to marshal the delegates directly makes more sense/is more readable.</p>
http://stackoverflow.com/questions/1681517/marshalling-struct-with-embedded-pointer-from-c-to-unmanaged-driver1Marshalling struct with embedded pointer from C# to unmanaged driverBen Schoepke2009-11-05T15:59:53Z2009-11-05T19:36:48Z
<p>Hi,</p>
<p>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 requires a DeviceIoControl input buffer that is the following unmanaged struct that contains an embedded pointer:</p>
<pre><code>typedef struct {
DWORD address;
const void* pBuffer;
DWORD size; // buffer size
} IOCTL_TWL_WRITEREGS_IN;
</code></pre>
<p>I defined the struct in C# as:</p>
<pre><code>[StructLayout(LayoutKind.Sequential)]
public struct IoctlWriteRegsIn
{
public uint Address;
public byte[] Buffer;
public uint Size;
}
</code></pre>
<p>and my P/Invoke signature as:</p>
<pre><code>[DllImport("coredll.dll", CharSet = CharSet.Unicode, SetLastError = true)]
static extern bool DeviceIoControl(IntPtr hDevice,
UInt32 dwIoControlCode,
ref IoctlWriteRegsIn lpInBuffer,
UInt32 nInBufferSize,
UInt32[] lpOutBuffer,
UInt32 nOutBufferSize,
ref UInt32 lpBytesReturned,
IntPtr lpOverlapped);
</code></pre>
<p>However, whenever I call DeviceIoControl() in C#, it always returns false, with a last Win32 error of <code>ERROR_INVALID_PARAMETER</code>. Here's a source code snippet from the IOCTL switch statement in the driver that handles the IOCTL code and does error checking on the input buffer, where inSize is the nInBufferSize parameter:</p>
<pre><code> case IOCTL_TWL_WRITEREGS:
if ((pInBuffer == NULL) ||
(inSize < sizeof(IOCTL_TWL_WRITEREGS_IN)))
{
SetLastError(ERROR_INVALID_PARAMETER);
break;
}
address = ((IOCTL_TWL_WRITEREGS_IN*)pInBuffer)->address;
pBuffer = ((IOCTL_TWL_WRITEREGS_IN*)pInBuffer)->pBuffer;
size = ((IOCTL_TWL_WRITEREGS_IN*)pInBuffer)->size;
if (inSize < (sizeof(IOCTL_TWL_WRITEREGS_IN) + size))
{
SetLastError(ERROR_INVALID_PARAMETER);
break;
}
rc = TWL_WriteRegs(context, address, pBuffer, size);
</code></pre>
<p>I tried hard coding sizes that should pass the driver's error checking with no success, suggesting that it's a marshalling problem. I probably did not define the embedded pointer in the C# struct correctly or have my P/Invoke signature wrong. Any ideas?</p>
<p>Thanks in advance,
Ben</p>
<p>For reference, I can talk to the driver from C++ with no problems like this:</p>
<pre><code>IOCTL_TWL_WRITEREGS_IN reg;
reg.address = 0x004B0014;
unsigned char data = 0xBE;
reg.pBuffer = &data;
reg.size = sizeof(char);
BOOL writeSuccess = DeviceIoControl(driver, IOCTL_TWL_WRITEREGS, &reg, sizeof(IOCTL_TWL_WRITEREGS_IN) + 1, NULL, 0, NULL, NULL);
</code></pre>
<p>Update: here's what worked!
Used JaredPar's IntPtr suggestion and cleaned up my P/Invoke signature by SwDevMan81's suggestion:</p>
<pre><code> [StructLayout(LayoutKind.Sequential)]
public struct IoctlWriteRegsIn
{
public uint Address;
public IntPtr Buffer;
public uint Size;
}
// elided
byte regData = 0xFF;
GCHandle pin = GCHandle.Alloc(regData, GCHandleType.Pinned);
IoctlWriteRegsIn writeInBuffer = new IoctlWriteRegsIn{Address = twlBackupRegA, Buffer = pin.AddrOfPinnedObject(), Size = 1};
bool writeSuccess = DeviceIoControl(driverHandle, IoctlTwlWriteRegs, ref writeInBuffer, (uint) Marshal.SizeOf(writeInBuffer) + 1, IntPtr.Zero, 0, ref numBytesReturned, IntPtr.Zero);
// P/Invoke signature
[DllImport("coredll.dll", CharSet = CharSet.Unicode, SetLastError = true)]
static extern bool DeviceIoControl(IntPtr hDevice,
UInt32 dwIoControlCode,
ref IoctlWriteRegsIn lpInBuffer,
UInt32 nInBufferSize,
IntPtr lpOutBuffer,
UInt32 nOutBufferSize,
ref UInt32 lpBytesReturned,
IntPtr lpOverlapped);
</code></pre>
http://stackoverflow.com/questions/1645145/marshalling-strings-c-to-c-conversion-is-not-supported-by-the-library0Marshalling strings, C++ to C#: 'conversion is not supported by the library'Simon Brooke2009-10-29T16:59:09Z2009-11-02T20:13:06Z
<p>Summary:</p>
<p>When attempting to use marshalling to pass string data into a C++ DLL from C#, I'm getting </p>
<blockquote>
<p>'msclr::interop::error_reporting_helper<_To_Type,_From_Type>::marshal_as':
This conversion is not supported by
the library or the header file needed
for this conversion is not included.
Please refer to the documentation on
'How to: Extend the Marshaling
Library' for adding your own
marshaling method. c:\program
files\microsoft visual studio
9.0\vc\include\msclr\marshal.h 203</p>
</blockquote>
<p>I'm using Visual Studio 2008 Professional Edition; Visual C++ 2008; .Net 3.5.</p>
<p>Detail:</p>
<p>The method concerned (in its simplest form) is as follows:</p>
<pre><code>LibDSSDLL::DssOutputSocketFacade::DssOutputSocketFacade(const System::String^ name)
{
marshal_context^ context = gcnew marshal_context();
std::string n = context->marshal_as<std::string>(name);
this->socket = new DssOutputSocket( n);
}
</code></pre>
<p>The header includes in the order they are presented to the preprocessor are</p>
<pre><code>#include "StdAfx.h"
#include <string>
#include <iostream>
#include <msclr\marshal_cppstd.h>
#using <mscorlib.dll>
using namespace System;
using namespace msclr::interop;
</code></pre>
<p>This looks to me as though it conforms to the example cited <a href="http://stackoverflow.com/questions/1300718/c-net-convert-systemstring-to-stdstring">here</a> and to the documentation at MSDN (Stack Overflow is refusing to let me cite a second URL); however clearly the C++ compiler is not finding the conversion it needs.</p>
<p>What have I missed? I confess I'm not very expert with C++ or with Windows.</p>
http://stackoverflow.com/questions/1661433/marshalling-and-converting-vb6-code-to-net0Marshalling and converting VB6 code to .NETJustin2009-11-02T13:48:42Z2009-11-02T15:34:03Z
<p>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, using the same parameters as the VB6 program, it returns a result of -1 (indicating an error). I think the error may be related to an upgrade comment I saw about marshalling, but I was not sure what I needed to do to declare the function differently. Here is the code that I believe is related to the problem (including the upgrade warnings from Visual Studios):</p>
<pre><code><StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> Private Structure FD_SET
Dim fd_count As Integer
<VBFixedArray(FD_SETSIZE)> Dim fd_array() As Integer
Public Sub Initialize()
ReDim fd_array(FD_SETSIZE)
End Sub
End Structure
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> Private Structure TIMEVAL
Dim tv_sec As Integer
Dim tv_usec As Integer
End Structure
'UPGRADE_WARNING: Structure TIMEVAL may require marshalling attributes to be passed as an argument in this Declare statement.
'UPGRADE_WARNING: Structure FD_SET may require marshalling attributes to be passed as an argument in this Declare statement.
'UPGRADE_WARNING: Structure FD_SET may require marshalling attributes to be passed as an argument in this Declare statement.
'UPGRADE_WARNING: Structure FD_SET may require marshalling attributes to be passed as an argument in this Declare statement.
Private Declare Function bsd_select Lib "WS2_32.dll" Alias "select" (ByVal nfds As Integer, ByRef readfds As FD_SET, ByRef writefds As FD_SET, ByRef exceptfds As FD_SET, ByRef timeout As TIMEVAL) As Integer
nResult = bsd_select(0, fdsRead, fdsWrite, fdsExcept, tvTimeout) 'the first parameter is ignored in Windows Sockets 2
</code></pre>
<p>Here is the code for the entire program. Thanks in advance!</p>
<pre><code>Option Strict Off
Option Explicit On
Imports System.Runtime.InteropServices
Module modTCPCommunicaiton
'Constants used with Windows Sockets
Private Const AF_INET As Integer = 2
Private Const SOCK_STREAM As Integer = 1
Private Const IPPROTO_TCP As Integer = 6
Private Const FD_SETSIZE As Integer = 64
Private Const SOCKET_ERROR As Integer = -1
Private Const INVALID_SOCKET As Integer = -1
'Constants used for clarity
Private Const WS_VERSION_1_1 As Short = 257
Private Const SOCKADDR_LEN As Integer = 16
Private Const NO_FLAGS As Integer = 0
Private Const MAX_REPLY_LEN As Integer = 3200
'Define structures used with Windows Sockets
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> Private Structure WSADATA
Dim wVersion As Short
Dim wHighVersion As Short
'UPGRADE_WARNING: Fixed-length string size must fit in the buffer. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="3C1E4426-0B80-443E-B943-0627CD55D48B"'
<VBFixedString(258), System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray, SizeConst:=258)> Public szDescription() As Char
'UPGRADE_WARNING: Fixed-length string size must fit in the buffer. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="3C1E4426-0B80-443E-B943-0627CD55D48B"'
<VBFixedString(130), System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray, SizeConst:=130)> Public szSystemStatus() As Char
Dim iMaxSockets As Short
Dim iMaxUdpDg As Short
Dim lpVenderInfo As String
End Structure
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> Private Structure SOCKADDR_IN
Dim sin_family As Short
Dim sin_port As Short
Dim sin_addr As Integer
<VBFixedArray(8)> Dim sin_zero() As Byte 'this is just padding to make the whole structure size to be 16 bytes.
Public Sub Initialize()
ReDim sin_zero(8)
End Sub
End Structure
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> Private Structure FD_SET
Dim fd_count As Integer
<VBFixedArray(FD_SETSIZE)> Dim fd_array() As Integer
Public Sub Initialize()
ReDim fd_array(FD_SETSIZE)
End Sub
End Structure
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> Private Structure TIMEVAL
Dim tv_sec As Integer
Dim tv_usec As Integer
End Structure
'Declare imported Windows Sockets functions
'UPGRADE_WARNING: Structure WSADATA may require marshalling attributes to be passed as an argument in this Declare statement. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="C429C3A5-5D47-4CD9-8F51-74A1616405DC"'
Private Declare Function WSAStartup Lib "WS2_32.dll" (ByVal wVersionRequested As Short, <[In](), Out()> ByRef lpWSAData As WSADATA) As Integer
Private Declare Function WSACleanup Lib "WS2_32.dll" () As Integer
Private Declare Function WSAGetLastError Lib "WS2_32.dll" () As Integer
Private Declare Function inet_addr Lib "WS2_32.dll" (ByVal szIPv4 As String) As Integer
Private Declare Function htons Lib "WS2_32.dll" (ByVal short_int As Short) As Short
Private Declare Function socket Lib "WS2_32.dll" (ByVal af As Integer, ByVal sock_type As Integer, ByVal protocol As Integer) As Integer
'UPGRADE_WARNING: Structure SOCKADDR_IN may require marshalling attributes to be passed as an argument in this Declare statement. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="C429C3A5-5D47-4CD9-8F51-74A1616405DC"'
Private Declare Function connect Lib "WS2_32.dll" (ByVal s As Integer, <[In](), Out()> ByRef name As SOCKADDR_IN, ByVal namelen As Integer) As Integer
Private Declare Function send Lib "WS2_32.dll" (ByVal s As Integer, ByVal buf As String, ByVal length As Integer, ByVal flags As Integer) As Integer
'Have to rename the "select" function due to conflict with reserved word in VB
'UPGRADE_WARNING: Structure TIMEVAL may require marshalling attributes to be passed as an argument in this Declare statement. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="C429C3A5-5D47-4CD9-8F51-74A1616405DC"'
'UPGRADE_WARNING: Structure FD_SET may require marshalling attributes to be passed as an argument in this Declare statement. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="C429C3A5-5D47-4CD9-8F51-74A1616405DC"'
'UPGRADE_WARNING: Structure FD_SET may require marshalling attributes to be passed as an argument in this Declare statement. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="C429C3A5-5D47-4CD9-8F51-74A1616405DC"'
'UPGRADE_WARNING: Structure FD_SET may require marshalling attributes to be passed as an argument in this Declare statement. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="C429C3A5-5D47-4CD9-8F51-74A1616405DC"'
Private Declare Function bsd_select Lib "WS2_32.dll" Alias "select" (ByVal nfds As Integer, <[In](), Out()> ByRef readfds As FD_SET, <[In](), Out()> ByRef writefds As FD_SET, <[In](), Out()> ByRef exceptfds As FD_SET, <[In]()> ByRef timeout As TIMEVAL) As Integer
Private Declare Function recv Lib "WS2_32.dll" (ByVal s As Integer, ByVal buf As String, ByVal length As Integer, ByVal flags As Integer) As Integer
Private Declare Function closesocket Lib "WS2_32.dll" (ByVal s As Integer) As Integer
'Variables used in this module
Dim hSock As Integer
Dim nResult As Integer
Dim fs As New Scripting.FileSystemObject 'Requires reference to "Microsoft Scripting Runtime" (system32\scrrun.dll)
Dim fileOut As Scripting.TextStream
Public Sub Main()
'This code provides a simple example of TCP communication to a SAFER DAS.
'After initializing and connecting to the DAS, several requests will be
'sent and the results logged to a text file. When finished, the notepad
'file will be opened. Users may modify this sample however they like.
'Initialize and attempt to connect to SAFER DAS
If Not SC_Init() Then
Exit Sub
End If
'We are now connected and ready to transact data with the DAS.
'The subroutine will take care of properly formatting the request string.
Call SC_SendRequest("SI 1")
'Call SC_SendRequest("SS 1")
'Call SC_SendRequest("SA 1,1")
'Call SC_SendRequest("SH 1,1")
'Call SC_SendRequest("SM 1,1")
'Call SC_SendRequest("SN 1,1")
'Call SC_SendRequest("SP 1,1")
'Call SC_SendRequest("SQ 1,1")
'We're finished, so close down the socket connection
Call SC_Close()
'Open the output text file
Call Shell("notepad.exe SAFER_com.txt", AppWinStyle.NormalFocus)
End Sub
Private Function SC_Init() As Boolean
SC_Init = False
'Prompt for IP address and port number to connect to
Dim sIPAddr As String
Dim sPort As String
sIPAddr = "151.163.221.93"
If sIPAddr = "" Then
Exit Function
End If
sPort = "3000"
If sPort = "" Then
Exit Function
End If
'Get the output file ready
On Error GoTo ErrorHandler
fileOut = fs.CreateTextFile("SAFER_com.txt", True)
'Initialize Windows Sockets 2
Dim wsAttrib As WSADATA
nResult = WSAStartup(WS_VERSION_1_1, wsAttrib)
If Not nResult = 0 Then
MsgBox("WSAStartup Error = " & nResult)
fileOut.Close()
Exit Function
End If
'Create a TCP socket
hSock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)
If hSock = INVALID_SOCKET Then
MsgBox("socket() Error = " & WSAGetLastError())
nResult = WSACleanup()
fileOut.Close()
Exit Function
End If
'Prepare the address data structure
Dim saAddress As New SOCKADDR_IN
saAddress.Initialize()
saAddress.sin_family = AF_INET
saAddress.sin_port = htons(Val(sPort))
saAddress.sin_addr = inet_addr(sIPAddr)
'Try connecting to the server
nResult = connect(hSock, saAddress, SOCKADDR_LEN)
If nResult = SOCKET_ERROR Then
MsgBox("connect() Error = " & WSAGetLastError())
nResult = WSACleanup()
fileOut.Close()
Exit Function
End If
'Successfully connected to the server
SC_Init = True
Exit Function
ErrorHandler:
MsgBox("Could not create output file.")
End Function
Private Sub SC_Close()
'Send special close request to DAS (5 bytes to send)
Dim sRequest As New VB6.FixedLengthString(15)
sRequest.Value = Chr(1) & Chr(0) & Chr(0) & Chr(0) & Chr(0)
nResult = send(hSock, sRequest.Value, 5, NO_FLAGS)
'Close our socket and shutdown Windows Sockets 2
nResult = closesocket(hSock)
nResult = WSACleanup()
fileOut.Close()
End Sub
Private Sub SC_SendRequest(ByRef sReq As String)
'Test for valid request length
If (Len(RTrim(sReq)) < 4) Or (Len(RTrim(sReq)) > 9) Then
MsgBox("Request is not valid")
Exit Sub
End If
'Format the request for sending to SAFER DAS by TCP port
Dim sRequest As New VB6.FixedLengthString(15)
sRequest.Value = Chr(0) & Chr(0) & Chr(0) & RTrim(sReq) & Chr(13) & Chr(0) & Chr(0)
'Send the formatted request
Dim nLen As Integer
nLen = 6 + Len(RTrim(sReq)) 'Include the 6 extra format bytes in the length
nResult = send(hSock, sRequest.Value, nLen, NO_FLAGS)
fileOut.WriteLine((sReq))
fileOut.WriteBlankLines((1))
'NOTE: When using the recv() function in blocking mode (default), it may wait forever
'for the other side to send some data. This can be problematic for your application.
'The select() function can be used to watch for the reply data to arrive with a timeout.
'If data has still not arrived after a generous timeout expires, it probably never will.
'In that case, the whole socket connection may be suspect and you might want to close it
'and start over.
'Prepare data structures for use with select() function
Dim fdsWrite, fdsRead, fdsExcept As New FD_SET
fdsWrite.Initialize()
fdsRead.Initialize()
fdsExcept.Initialize()
Dim tvTimeout As TIMEVAL
fdsRead.fd_count = 1 'how many sockets to check for incoming data
fdsRead.fd_array(0) = hSock 'which sockets to check
fdsWrite.fd_count = 0
fdsExcept.fd_count = 0
tvTimeout.tv_sec = 5 '5-second timeout
tvTimeout.tv_usec = 0
'Wait up to timeout for data to arrive from SAFER DAS
'System.Threading.Thread.Sleep(5000)
nResult = bsd_select(0, fdsRead, fdsWrite, fdsExcept, tvTimeout) 'the first parameter is ignored in Windows Sockets 2
Dim sReply As New VB6.FixedLengthString(MAX_REPLY_LEN)
Dim sData As String
If nResult = 1 Then
'select() reports that some data has arrived for 1 socket (our only socket)
nLen = recv(hSock, sReply.Value, MAX_REPLY_LEN, NO_FLAGS)
'nLen = recv(1001, sReply.Value, MAX_REPLY_LEN, NO_FLAGS)
'Get the length of just the SAFER data by excluding the first 3 wrapper bytes,
'the <LF> end delimiter, and the last 2 wrapper bytes.
nLen = nLen - 6
'Extract the SAFER data packet from the reply string, skipping over the first 3 wrapper bytes
sData = Mid(sReply.Value, 4, nLen)
fileOut.WriteLine((sData))
fileOut.WriteBlankLines((1))
ElseIf nResult = 0 Then
'select() timed out
MsgBox("Timed out waiting for reply" & nResult)
fileOut.WriteLine(("Timed out waiting for reply" & nResult))
fileOut.WriteBlankLines((1))
Else
'Some other error occurred
MsgBox("select() Error = " & WSAGetLastError())
fileOut.WriteLine(("select() Error = " & WSAGetLastError()))
fileOut.WriteBlankLines((1))
End If
End Sub
End Module
</code></pre>
<p><hr /></p>
http://stackoverflow.com/questions/602410/may-com-server-reallocate-in-out-caclsid-arg0may COM server reallocate ([in, out] CACLSID * arg) ?peterchen2009-03-02T13:46:28Z2009-10-31T17:00:03Z
<p>With a COM interface method declared as this:</p>
<pre><code>[ object,
uuid(....),
]
interface IFoo : IUnknown
{
HRESULT Foo([in, out] CACLSID * items);
}
</code></pre>
<p>With regards to marshalling, is the server allowed to reallocate the counted array? (I <em>think</em> it is, but I am not sure anymore)</p>
<p>Its current implementation only replaces the existing ID's, but I'd like to implement a change (that would not break contract) that may return more items without introducing a new interface.</p>
<p><strong>[edit]</strong> please note that <a href="http://msdn.microsoft.com/en-us/library/bb401564.aspx" rel="nofollow">CACLSID</a> is already an array, containing a count and a pointer. </p>
http://stackoverflow.com/questions/1537198/system-accessviolationexception0System.AccessViolationExceptionYogi2009-10-08T11:24:19Z2009-10-24T09:00:03Z
<p>Hi,
I am using a com DLL in the following manner:</p>
<pre><code>#Region "API Function"
<DllImportAttribute("abc.dll", EntryPoint:="optcntl")> _
Public Shared Function optcntl(ByRef pBlocks As blocks) As Integer
End Function
#End Region
</code></pre>
<p>This DLL using the other four dlls to complete its processing. If I change the current directory path from the /bin/ folder to other folder in C or D drive which contains all the DLL. I get the following Error message:
System.AccessViolationException: Atempted to read or write protected memory.
This is often an indication that other memory is corrupt</p>
<p>Any help would be appriaciated..</p>
http://stackoverflow.com/questions/1056693/read-write-on-protected-memory-exception-thrown-net0Read/Write on protected memory exception thrown (.net)Jorge Branco2009-06-29T05:32:40Z2009-10-20T12:00:01Z
<p>I am being told by an exception that's being thrown in the last line, that I'm trying to read/write on protected memory. What am I doing wrong here? Thanks</p>
<pre><code> int count = (int)WinApi.SendMessage(_chatHwnd, WinApi.LB_GETCOUNT, 0, 0);
Debug.WriteLine("count=" + count);
StringBuilder sb = new StringBuilder(count * 20);
for (int i = _lastReadPosition; i < count; i++) {
int len = (int)WinApi.SendMessage(_chatHwnd, WinApi.LB_GETTEXTLEN, i, 0);
IntPtr text = Marshal.AllocHGlobal(len);
byte[] itemText = new byte[len];
WinApi.SendMessage(_chatHwnd, WinApi.LB_GETTEXT, i, text.ToInt32());
Marshal.Copy(text, itemText, 0, len);
string s = System.Text.Encoding.UTF8.GetString(itemText);
sb.Append(s);
}
Debug.WriteLine("analise"); <- EXCEPTION THROWN HERE
</code></pre>
http://stackoverflow.com/questions/1579559/marshalling-net-generic-types4Marshalling .NET generic typesGabriel2009-10-16T18:10:50Z2009-10-17T17:24:19Z
<p>Here is a C# program that tries <code>Marshal.SizeOf</code> on a few different types:</p>
<pre><code>using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential)]
class AClass { }
[StructLayout(LayoutKind.Sequential)]
struct AStruct { }
[StructLayout(LayoutKind.Sequential)]
class B { AClass value; }
[StructLayout(LayoutKind.Sequential)]
class C<T> { T value; }
class Program
{
static void M(object o) { Console.WriteLine(Marshal.SizeOf(o)); }
static void Main()
{
M(new AClass());
M(new AStruct());
M(new B());
M(new C<AStruct>());
M(new C<AClass>());
}
}
</code></pre>
<p>The first four calls to M() succeed, but on the last one, SizeOf throws an ArgumentException:</p>
<pre><code>"Type 'C`1[AClass]' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed."
</code></pre>
<p>Why? Specifically, why does SizeOf choke on <code>C<AClass></code>, but not on <code>B</code> or on <code>C<AStruct></code>?</p>
<p><hr /></p>
<p><strong>EDIT:</strong> Because it was asked about in the comments, here's the "real-world" problem that inspired this mostly-academic question:
I'm calling into a C API that is basically one C function that operates on (pointers to) lots of different types of simple C structures. All contain a common header followed by one field, but the type of that field is different in different structures. A flag in the header indicates the type of the field. (Strange, yes, but that's what I have to work with). </p>
<p>If I could define a single generic type <code>C<T></code> and a single C# extern declaration <code>M(C<T>)</code>, and then call <code>M(C<int>)</code> on one line, and <code>M(C<double>)</code> on another, I'd have a short and sweet interop solution. But given JaredPar's answer, it appears that I have to make a separate C# type for each structure (though inheritance can provide the common header).</p>
http://stackoverflow.com/questions/1578434/java-rmi-marshalexception0java.rmi.MarshalExceptionAttilah2009-10-16T14:35:56Z2009-10-16T14:47:54Z
<p>whenever I try to call my ejb from a client, I get this error :</p>
<pre><code> java.rmi.MarshalException: Failed to communicate.
Problem during marshalling/unmarshalling; nested exception is:
java.io.InvalidClassException: com.afrikbrain.util.message.MessageInfo;
local class incompatible:
stream classdesc serialVersionUID = 2285009932770474121,
local class serialVersionUID = -2900394430145132451 at
org.jboss.remoting.transport.socket.SocketClientInvoker.handleException(SocketClientInvoker
.java:122)
</code></pre>
<p>why is it occuring ? and how to solve it ?</p>
http://stackoverflow.com/questions/1536319/does-c-have-an-equivalent-to-pragma-pack-in-c1Does C# have an equivalent to #pragma pack in C++?TheBeardyMan2009-10-08T08:07:35Z2009-10-12T13:38:50Z
<p>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 in C++ is "every member gets the alignment it wants, unless it wants more than the specified alignment, in which case it's not guaranteed to get more than that".</p>
<p>Is there a way to cause the layout of a struct in C# to be the same as the layout of a similar struct in C++ with a specific #pragma pack, other than using StructLayout( LayoutKind.Explicit ) and FieldOffset on each member, or inserting unused padding members?</p>
http://stackoverflow.com/questions/1538932/how-to-marshal-net-string-to-variant-for-com-call1How to marshal .NET string to variant for COM callpadraigf2009-10-08T16:25:24Z2009-10-08T16:28:03Z
<p>I'm using a third-party COM library from C#.</p>
<p>There are get/set methods that take a parameter of type VARIANT (type VT_BSTR).
In the .NET wrapper, these parameters appear as type <code>object</code>, i.e.</p>
<pre><code>object getValue();
void setValue( object val );
</code></pre>
<p>The getValue method works ok, I perform a simple cast of the object to type string:</p>
<pre><code>string str = (string)comObject.getValue();
</code></pre>
<p>but setting the string in a similar way doesn't:</p>
<pre><code>string str = "test";
comObject.setValue( str );
</code></pre>
<p>The third party library doesn't like this and generates an exception. It must be expecting a VARIANT of type VT_BSTR (as this works from native C++). So my question is, how do I create one of these in C#?</p>
<p>I've been looking at methods like <code>Marshal.GetNativeVariantForObject</code>, but documentation on correct usage of this seems a bit thin on the ground, so any example code would be useful.</p>
http://stackoverflow.com/questions/1506663/can-i-force-jaxb-not-to-convert-into-quot-for-example-when-marshalling-to-x4Can I force JAXB not to convert " into ", for example, when marshalling to XML?Elliot2009-10-01T21:40:13Z2009-10-06T08:19:39Z
<p>I have an Object that is being marshalled to XML using JAXB. One element contains a String that includes quotes ("). The resulting XML has <code>&quot;</code> where the " existed.</p>
<p>Even though this is normally preferred, I need my output to match a <em>legacy</em> system. How do I force JAXB to NOT convert the HTML entities?</p>
<p>--</p>
<p>Thank you for the replies. However, I never see the handler escape() called. Can you take a look and see what I'm doing wrong? Thanks!</p>
<pre><code>package org.dc.model;
import java.io.IOException;
import java.io.Writer;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import org.dc.generated.Shiporder;
import com.sun.xml.internal.bind.marshaller.CharacterEscapeHandler;
public class PleaseWork {
public void prettyPlease() throws JAXBException {
Shiporder shipOrder = new Shiporder();
shipOrder.setOrderid("Order's ID");
shipOrder.setOrderperson("The woman said, \"How ya doin & stuff?\"");
JAXBContext context = JAXBContext.newInstance("org.dc.generated");
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
marshaller.setProperty(CharacterEscapeHandler.class.getName(),
new CharacterEscapeHandler() {
@Override
public void escape(char[] ch, int start, int length,
boolean isAttVal, Writer out) throws IOException {
out.write("Called escape for characters = " + ch.toString());
}
});
marshaller.marshal(shipOrder, System.out);
}
public static void main(String[] args) throws Exception {
new PleaseWork().prettyPlease();
}
}
</code></pre>
<p>--</p>
<p>The output is this:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<shiporder orderid="Order's ID">
<orderperson>The woman said, &quot;How ya doin &amp; stuff?&quot;</orderperson>
</shiporder>
</code></pre>
<p>and as you can see, the callback is never displayed. (Once I get the callback being called, I'll worry about having it actually do what I want.)</p>
<p>--</p>
http://stackoverflow.com/questions/1522728/is-it-possible-to-force-a-string-to-be-a-specific-size-when-defining-a-struct3Is it possible to force a string to be a specific size when defining a struct?Chris2009-10-05T22:27:40Z2009-10-05T22:58:47Z
<p>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 will be recreating the structs with reinterpret_cast) so that the data will remain formatted as it was in the C# application. Unfortunately, I'm pretty rusty with C++ and I'm not sure how to force a string's size in a struct in C++.</p>
<p>As requested, an example. I have a struct in C# that looks like this:</p>
<pre><code>[StructLayout(LayoutKind.Sequential)]
public struct DataLocater
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
public string filename;
[MarshalAs(UnmanagedType.I4)]
public Int32 sizeOfData;
public Int32 startLocation;
public Int32 encrypted;
}
</code></pre>
<p>Which I am marshalling several of (along with other data) to a data file. The C++ file is then reading this file in and I will be parsing it back into struct in C++ with the same structure. My first attempt at this struct looked like:</p>
<pre><code>struct DataLocater
{
std::string filename;
int sizeOfData;
int startLocation;
int encrypted;
};
</code></pre>
<p>But there is no way for the compiler to know that I want that std::string to be 256 bytes.</p>
<p>edit: adding full header file for example.</p>
<pre><code>#pragma once
#include "CoreArea/Singleton.h"
class FileReader : public Singleton<FileReader>
{
friend class Singleton<FileReader>;
public:
void* GetFileData(std::wstring fileName, int &size);
private:
FileReader();
~FileReader();
struct Header
{
std::string somestring;
int numOfFiles;
};
struct DataLocater
{
char[256] filename;
int sizeOfData;
int startLocation;
int encrypted;
};
};
</code></pre>