It works...:P
thanks a lot for the fast reply,
cath
Gareth Reakes <[EMAIL PROTECTED]>
2003-01-16 11:12 AM
Please respond to xerces-c-dev
To: [EMAIL PROTECTED]
cc: (bcc: Catharina Ibrahim/EHV/TASS/PHILIPS)
Subject: R
Hi,
Have you initialised the library? Something like
try
{
XMLPlatformUtils::Initialize();
}
catch(const XMLException &toCatch)
{
cerr << "Error during Xerces-c Initialization.\n"
<< " Exception message:"
<< StrX(toCatch.getM
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