Ok, I have the HDF5 library downloaded from the official site, and I have a few DLLs, including hdf5dll.dll, and hdf5_hldll.dll.

I have what I think to be some wrappers around the native calls, in my classes H5, H5LT, H5F, and H5T. Example from H5.cs:

namespace HDF5
{
    using hid_t = System.Int32;
    using herr_t = System.Int32;
    using hsize_t = System.UInt64;
    using size_t = System.UInt32;
    // hbool_t is 0:false, +:true
    using hbool_t = System.UInt32;
    // htri_t is 0:false, +:true, -:failure
    using htri_t = System.Int32;

    public class H5
    {
        const CharSet StringMarshallingType = CharSet.Ansi;
        const string DLLNAME = "hdf5dll.dll";

        ///* Functions in H5.c */
        //H5_DLL herr_t H5open(void);
        [DllImport(DLLNAME,
            CharSet = StringMarshallingType)]
        public static extern herr_t H5open();

And in Program.cs, I use H5.H5open();, but I get a BadImageFormatException. Do I need a different DLL? Does the method signature look wrong?

I'd like to, as the next step, get this in C#: http://www.hdfgroup.org/HDF5/Tutor/h5lite.html .

OS: Windows 7 64 bit
Environment: Visual Studio 2008 Professional

Update: I don't know if this will be related, and I don't remember if my environment is VS2008 SP1, but this question may hold a key to solving the mystery. I am as of now trying to repeat the scenario on 32 bit VS 2010 at home.

link|improve this question

57% accept rate
Is this on 64bit architecture now just read Steve's comment below? Please enclose more details as we are guessing here.... – t0mm13b Aug 12 '10 at 21:02
Thanks. I am on Windows x64, but I am compiling my .NET application to target "x86". Is this still ok? – maxwellb Aug 12 '10 at 21:06
Check with HDF and ensure that the dlls they gave you are built for x86 architecture also. – Steve Danner Aug 12 '10 at 21:10
I have been using the x86 DLL's, but I will try again, with the 64-bit DLL's. – maxwellb Aug 12 '10 at 21:12
Wow, moving to the 64-bit DLL's just seemed to crash vshost without catching an exception. – maxwellb Aug 12 '10 at 21:19
feedback

3 Answers

up vote 3 down vote accepted

That happens when you're trying to run P/Invoke operations on a dll meant for x86 architecture from within an x64 process or vice versa. I'd check all of that and if they're out of sync, consider targeting the processor that HDF5 targets with your application, or checking if a processor-specific version is available.

link|improve this answer
Thank you, but I have tried these combinations. I am going to see if VS2008 SP1 solves the issue. – maxwellb Aug 16 '10 at 15:42
Ok, what happened was: I had a solution configuration of x86 already targeted. But, when I created new projects they were still targeting "Any CPU". I had to remove the x86 target platform, and re-add it, so that it would update the individual projects. – maxwellb Aug 16 '10 at 15:49
feedback

Looking at the documentation from here, the function prototype is:

herr_t H5open(void);

And also the DLLNAME is disallowed, you must explicitly specify the dll name - no questions asked.

The proper signature is:

[DllImport("hdf5dll.dll")]public static extern herr_t H5open();

Make sure you have the type herr_t defined...

Let the runtime take care of the marshalling for you....

Also make sure, the DLL is present in the same path as where the compiled .EXE (your code) is generated.

Edit: Thanks to the OP for pointing out my blooper....

link|improve this answer
Thanks, Tommie. So, I can't set a const string for my DLL name? – maxwellb Aug 12 '10 at 21:13
You will see that I have included that bit from the documentation already, and please note that H5open(void) is not valid C#. – maxwellb Aug 12 '10 at 21:25
feedback

On x64 operatingsystems .net programs usually run in x64 mode. Just set your target processor architecture to x86 and try again. Just in Visual studio open your "Solution Configuration"-Manager and add a new target Platform.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.