gpt4 book ai didi

c++ - MSXML6 中的第一次机会异常

转载 作者:太空宇宙 更新时间:2023-11-04 11:46:00 25 4
gpt4 key购买 nike

我正在根据 XSD 架构验证 XML 文件,就像它们在 MSXML 文档中所做的那样 example .我有以下代码:

XMLSchemaValidation updateInfoSchema;
updateInfoSchema.DoInitialization(L"schema.xsd");

HRESULT hr = CoInitialize(NULL);
if(SUCCEEDED(hr))
{
try
{
_bstr_t bstrOutput = updateInfoSchema.validateFile(L"valid.xml");
}
catch(_com_error &e)
{
updateInfoSchema.dump_com_error(e);
}
CoUninitialize();
}


// Macro that calls a COM method returning HRESULT value.
#define CHK_HR(stmt) do { hr=(stmt); if (FAILED(hr)) goto CleanUp; } while(0)


_bstr_t XMLSchemaValidation::validateFile(_bstr_t bstrFile)
{
// Declare and initialize variables
MSXML2::IXMLDOMSchemaCollectionPtr pXS;
MSXML2::IXMLDOMDocument2Ptr pXD;
MSXML2::IXMLDOMParseErrorPtr pErr;
_bstr_t bstrResult = L"";
HRESULT hr = S_OK;

// Create a schema cache and add xsd schema to it.
CHK_HR(pXS.CreateInstance(__uuidof(MSXML2::XMLSchemaCache60), NULL, CLSCTX_INPROC_SERVER));
CHK_HR(pXS->add(L"", (LPCSTR)(SchemaFileName.GetString())));

// Create a DOMDocument and set its properties.
CHK_HR(pXD.CreateInstance(__uuidof(MSXML2::DOMDocument60), NULL, CLSCTX_INPROC_SERVER));

// Assign the schema cache to the DOMDocument's schemas collection.
pXD->schemas = pXS.GetInterfacePtr();

// Load bstrFile into the DOM document.
pXD->async = VARIANT_FALSE;
pXD->validateOnParse = VARIANT_TRUE;
pXD->resolveExternals = VARIANT_TRUE;

if(pXD->load(bstrFile) != VARIANT_TRUE)
{
pErr = pXD->parseError;

bstrResult = _bstr_t(L"Validation failed on ") + bstrFile +
_bstr_t(L"\n=====================") +
_bstr_t(L"\nReason: ") + _bstr_t(pErr->Getreason()) +
_bstr_t(L"\nSource: ") + _bstr_t(pErr->GetsrcText()) +
_bstr_t(L"\nLine: ") + _bstr_t(pErr->Getline()) +
_bstr_t(L"\n");
}
else
{
bstrResult = _bstr_t(L"Validation succeeded for ") + bstrFile +
_bstr_t(L"\n======================\n") +
_bstr_t(pXD->xml) + _bstr_t(L"\n");
}

CleanUp:
return bstrResult;
}

XMLSchemaValidation::DoInitialization(CString XSDFileName) 将 XSD 模式文件名获取到 CString XMLSchemaValidation::SchemaFileName 中。

代码遵循 MSXML 示例中的代码,但我明白了

First-chance exception at 0x76f9c41f (KernelBase.dll) in CSW.exe: Microsoft C++ exception: _com_error at memory location 0x04a7f014..

当代码到达 CHK_HR(pXS->add(L"", (LPCSTR)(SchemaFileName.GetString()))); 时。 hr 有 -2146697210。

谁能告诉我为什么会这样?

最佳答案

MSXML 抛出 HRESULT OBJECT_NOT_FOUND (0x800C0006) 因为您使用的 xml 没有指定字符集,详见 this question .或者 MSXML 找不到该文件。

关于c++ - MSXML6 中的第一次机会异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19812780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com