I'm trying to connect to a AS400 server using the .net classes. I have added a reference to IBM.Data.DB.iSeries and I use the following code: var conn = new iDB2Connection("DataSource=111.111.111.111;UserID=xxx;Password=xxx; DataCompression=True;"); conn.Open(); But I get the following exceptions Running 64 bit: "The provider cannot run in 64-bit mode." Running 32 [...] read more
I am working on a Winforms project. Currently I am facing a problem that running some of the test cases throw System.BadImageFormatException : The operating system cannot run . (Exception from HRESULT: 0x800700B6) exception. This happens only if I run tests through NUnit. However, if I run the application through [...] read more
I have a project which I imported from old system. This code became most problematic PacketGroup = new ArrayList(); Crypto = new GameCrypto(ASCIIEncoding.ASCII.GetBytes(STRING_CRYPTO)); KeyExchance = new OpenSSL.Crypto.DH(); KeyExchance.G = RANDOM_INT; KeyExchance.P = OpenSSL.Core.BigNumber.FromHexString("KEY__KEY_KEY\0"); KeyExchance.GenerateKeys(); NewServerIV = GenerateIV(); NewClientIV = GenerateIV(); At first I received the error: > System.TypeInitializationException: The type [...] read more
I am running my tests in NUnit. But while debugging I checked that the tests are failing while any remote object is accessed. The error I am getting is > The operating system cannot run . (Exception from HRESULT: 0x800700B6) What can be the possible issue? read more
This happens when P/Invoking into Intel IPP library. This library in-turn relies on OpenMP. Here's what I've tried: http://software.intel.com/en-us/articles/opm-abort-initializing-libguide40dll/ Should resolve the exception about using two versions of OpenMP together (libguide40.dll and libiomp5md.dll). Removing a local copy of libguide40.dll did not solve the issue. Could you help me to track [...] read more