我正在尝试使用由 Visual Studio 2010 生成的 COM 服务器。当我运行 CreateInstance(..) 时,我收到错误代码 0x80040154 。我启用了融合日志并运行了 fuslogvw 。Fuslogvw 报告加载程序集(由未知调用程序程序集)
mscorlib.resources, Version=4.0.0.0, Culture=zh-HK, PublicKeyToken=b77a5c561934e089
我已经为繁体中文和简体中文安装了 .net framework 4 语言包。
请帮忙 。提前致谢。
我的 C++ 代码如下:
#include "stdafx.h"
#import "/Project/TestCOM/MyProject.tlb"
#include <comutil.h>
int _tmain(int argc, _TCHAR* argv[])
{
CoInitialize(NULL);
MyProject::_PHPStarterPtr pCalc;
HRESULT hRes = pCalc.CreateInstance(__uuidof(MyProject::PHPStarter));
if(FAILED(hRes))
{
printf("MyProject::_PHPStarterPtr failed w/err 0x%08lx\n", hRes); // it printed MyProject::_PHPStarterPtr failed w/err 0x80040154
}
else
{
pCalc->AddRef();
bstr_t s("hello");
bstr_t outStr = pCalc->Echo(s);
printf("outStr = %s\n", (const char *)outStr);
pCalc->Release();
printf("Dispose() done\n");
}
CoUninitialize();
return 0;
}