Microsoft XML .C++..Why 0xE0000001: (no name) occurs when i call CreateCDATASect
First-chance exception in OSud.exe (KERNEL32.DLL): 0xE0000001: (no name).
Function call doenst create a DATASECTION and it stays NULL.
i am calling the function like this
CComBSTR bstrData; //this is a very large string
CComPtr<IXMLDOMCDATASection> pICDATASection;
CreateCDATASection(bstrData, &pICDATASection);
what are the causes of this exception?
Is this due to huge size of string that i am passing to CreateCDATASection?

