Hi,
I would like to know how to write a c++ CLR client application. (can be
console , win form , win service appl)
I tried to execute following code. It can compile successfully, but fail to
run.
#include <qpid/client/Connection.h>
//using namespace std;
int main(array<System::String ^> ^args)
{
//cout << "Hello world" << endl;
return 0;
}
Output : "The application failed to initialize properly (0x000007b)".
'qpidExampleWithClr.exe': Loaded '.:\Documents and Settings\wielly\My
Documents\Visual Studio
2008\Projects\qpidExampleWithClr\Debug\qpidExampleWithClr.exe', Symbols
loaded.
'qpidExampleWithClr.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll'
'qpidExampleWithClr.exe': Loaded 'C:\WINDOWS\system32\mscoree.dll'
'qpidExampleWithClr.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll'
'qpidExampleWithClr.exe': Loaded 'C:\WINDOWS\system32\advapi32.dll'
'qpidExampleWithClr.exe': Loaded 'C:\WINDOWS\system32\rpcrt4.dll'
'qpidExampleWithClr.exe': Loaded 'C:\WINDOWS\system32\secur32.dll'
'qpidExampleWithClr.exe': Unloaded 'C:\WINDOWS\system32\mscoree.dll'
Debugger:: An unhandled non-continuable exception was thrown during process
load
The program '[4276] qpidExampleWithClr.exe: Native' has exited with code
-1073741701 (0xc000007b).
A small tips on how to resolve the problem will be useful for me.
Thank you.
Regards,
Willy