Hi Lokesh, It looks like you are having a deployment issue with your Xerces-C++ library binaries. You need to do some digging to find out the root cause of the problem. The error message says the manifest is missing, but it can also mean the meanifest is OK but a component that it points to is missing. Best way to find out missing components is to go to Event Viewer under Admin Tools and look for SideBySide errors under System. That will tell you exactly what's missing.
It is recommended that all DLLs have a manifest embedded inside the binary. External manifests are ignored when a DLL is loaded though a LoadLibrary call. Open your XercesLib project and go to the Project's Properties. Make sure Configuration Properties->Linker->Manifest File->Generate Manifest is "Yes". Then go to Configuration Properties->Manifest Tool->Input and Output ->Embed Manifest and choose "Yes" and rebuild the project. I hope that helps. Cheers, -Ozgur Sahoglu -----Original Message----- From: Lokesh Madan [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 30, 2008 2:23 PM To: [email protected] Subject: error: LDR: LdrpWalkImportDescriptor() failed to probe c:\Documents and Settings\Lokesh Madan\My Documents\Visual Studio 2008\Projects\testxml\Debug\xerces-depdom_2_8D.dll for its manifest, ntstatus 0xc0150002 Hi, I am trying to use xerces in of my application(which is in VC++ on windows platform). i am using the xerces-c_2_8_0 version, my application build successfully but when when i was trying to execute the application it gave me the error "application failed to initialise properly" when i tried to debug it it gave me the error "LDR: LdrpWalkImportDescriptor() failed to probe c:\Documents and Settings\Lokesh Madan\My Documents\Visual Studio 2008\Projects\testxml\Debug\xerces-depdom_2_8D.dll for its manifest, ntstatus 0xc0150002 Debugger:: An unhandled non-continuable exception was thrown during process load The program '[19528] testxml.exe: Native' has exited with code -1072365566 (0xc0150002)." Can anyone please help me out what this error is and how to resolve this error. -- Regards, Lokesh Madan
