Hi, I try to create an XML DOM tree by writing these in msDev Visual C++ 6:

1        XMLCh* feature = XMLString::transcode("Core");
2        DOMImplementation* impl = DOMImplementationRegistry::getDOMImplementation(feature);
3        XMLCh* docName = XMLString::transcode("XML Document Sample");
4        DOMDocument* xmlDoc = impl->createDocument(0, docName, 0);

Visual C++ gives me this error message when it comes to the 4th line:
First-chance exception in GenericAppl.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception

could someone pls tell me what goes wrong. I am new to both c++ and xerces and I really am lost...

is it something to do with .DLL? I use the binary distribution and I assume it is enough to link to the .lib. Is that correct?

thx a lot,
cath

Reply via email to