2

我有一个注册为 COM 互操作的 C# Dll:

[Guid("B41C2229-DBBD-4614-AE28-BFAE82B10F20")]
    [InterfaceType(ComInterfaceType.InterfaceIsDual)]
    public interface ITestCls
    {
        [DispId(1)]
        string test(string input);
    }

    [Guid("5E88B6B8-AE17-40A0-917A-51DEBD818145")]
    [ClassInterface(ClassInterfaceType.None)]
    [ProgId("TestNm.TestCls")]       
    public class TestCls : ITestCls
    {
        public string test(string input)
        {
            Console.WriteLine("INSIDE CS :: ");
            return "CS ::  ARE YOU TESTING WITH THIS INPUT " + input;        
        }
    }

我试图从我的 C++ 代码中调用它:

    CoInitialize(NULL); 
    std::cout << data << '\n'; 
    _bstr_t bstrt(data);
    BSTR  lResult;  
    CComQIPtr<IWPrint> iWrapClass;
    HRESULT hresult;
    hresult = iWrapClass.CoCreateInstance(L"TestNm.TestCls");
    printf("0x%08lx", hresult); 
    if (SUCCEEDED (hresult))
    {
        iWrapClass->test(bstrt,&lResult);
        wprintf(L"Response  %s\n", lResult);
    }
    CoUninitialize();
    return lResult;

当我在其他机器上运行相同的开发机器时,一切正常,HRESULT 给我这个:

 0x800401f3 

我错过了一些注册吗?

谢谢

4

2 回答 2

1

故障排除时要尝试的一些事情:

  • 将托管程序集的目标 CPU 平台设置为 x86(32 位);
  • 确保程序集有一个强名称
  • 在目标机器上,使用 RegAsm.exe 的 32 位版本(C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe而不是 C:\Windows\Microsoft.NET\Framework64\v4.0.30319 \RegAsm.exe)。
  • 在目标机器上注册它RegAsm.exe /codebase(需要一个强大的程序集名称)。
于 2013-08-20T05:32:21.263 回答
0

是的,看起来像(regasm)它或烫发见walkthru

http://www.iis.net/learn/media/web-playlists/web-playlists-for-iis-extending-web-playlists-through-custom-providers

于 2013-07-16T10:06:46.677 回答