我编写了一个概念验证COM Callable Wrapper,以便用新功能替换现有的COM组件。我的项目的一个约束是我不能改变调用代码;调用代码应该不知道COM Callable Wrapper的存在。如果调用代码是.NET 2.0,那么我创建的小概念验证解决方案是有效的,但如果调用代码在.NET 4.0中,则会失败,并出现InvalidCastException。有人可以帮我发现这个特定于.NET 4.0的InvalidCastException
的原因吗?
COM Callable Wrapper:
using System.EnterpriseServices;
using System.Runtime.InteropServices;
namespace DNNXPOC.CCWTestA
{
[ComVisible(true)]
[Guid("39D50FA3-DF73-4A3B-A4F8-4D21F5A27E83")]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface ItestA
{
[DispId(1)]
int process();
}
[ClassInterface(ClassInterfaceType.None)]
[ComVisible(true)]
[Guid("1A6ECD84-5147-4EF8-89A4-0F9AC5F3915B")]
[ProgId("NNXPOC.testA")]
[ComDefaultInterface(typeof(ItestA))]
public class testA : ServicedComponent, ItestA
{
public int process()
{
const int result = 3;
return result;
}
}
}
调用代码(异常是new
行抛出):
using System;
using System.Runtime.InteropServices;
using NNXPOCLib;
namespace DNNXPOC
{
public class TestAAccessWrapper : IDisposable
{
private ItestA _testA;
private bool _isDisposed;
public TestAAccessWrapper()
{
_testA = new testAClass();
}
public ItestA testA { ... }
public void Dispose() { ... }
}
}