Hi, everyone,
I have a problem in creating a SAXParser object in the same process. For
example,
SAXParser *pParser;
XMLPlatformUtils::Initialize();
...
pParser = new SAXParser; // first time succeeded
...
delete pParser;
XMLPlatformUtils::Terminate();
...
XMLPlatformUtils::Initialize();
...
pParser = new SAXParser; // second time failed
...
delete pParser;
XMLPlatformUtils::Terminate();
The first time creating doesn't have any problem. But the second time, it
always failed. Does anybody know the reason?
Thanks!
Jason
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]