0

我一直在研究一个简单的 dll 库,它是可访问的,以便其他软件可以使用我们的库(来自任何托管或非托管语言)。

创建一个可访问 com 的 dll 非常简单:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace MyNamespace
{
    //This interface defines purely the events. DotNetEventSender should implement this interface with the ComSourceInterfaces() attribute
    //to become an Event Source.
    [ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
    public interface COMEventsInterface
    {
        //[DispId(1)]
        // we don't have any events, but if needed, include them here

    }

    [ComVisible(true)]
    public interface ICOM
    {
        //Methods
        int Sum(int[] intsToSum)
    }

//Identifies this interfaces that are exposed as COM event sources for the attributed class.
    [ComSourceInterfaces(typeof(COMEventsInterface))]
    //Tells the compiler not to generate an interface automatically and that we are implementing our own interface (IDotNetEventSender)
    [ClassInterface(ClassInterfaceType.None)]
    [ComVisible(true)]
    public class COM : ICOM
    {

        // Methods
        public int Sum(int[] intsToSum)
        {
            int sum = 0;
            foreach ( int i in intsToSum )
            {
                sum += i;
            }
            return sum;
        }
    }
}

在调试模式下,现在将通过 Project>Properties>Build>Register for com interop 将此项目标记为注册 com-interop。

在发布模式下,我有一个安装程序,它将我的项目的主要输出标记为“vsdrpCOM”。

在大多数情况下,这很有效。但不知何故,在某些机器(全美国)上,这是行不通的。com 类已注册,但我经常收到错误:HRESULT 0x80131534,实际上已经在此处描述了 SO:通过经典 ASP 实例化 .NET/COM 互操作类时出错

但实际上,我在这里看不到任何解决方案。我检查了用户权限,域权限,...

编辑:我的真实班级的构造函数做了一件事:(我添加了try catch,因为我发现这是构造函数中的错误......)

// Constructor
    public COM()
    {
        try
        {
            // register itself with the application
            MyApplication.COMObject = this;
        }
        catch(Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }
    }

它只是将自己注册到一个静态类的属性 COMObject:

private static COM _comObject;
public static COM COMObject
        {
            get
            {
                return _comObject;
            }
            set
            {
                _comObject = value;
            }
        }

虽然,COM 类实际上并不需要注册自己,但如果我想触发事件,我已经这样做了以备将来使用

4

1 回答 1

0

好吧,我碰巧是在我的静态类声明之一中错误地声明了 DateTime... private DateTime myDateTime = Convert.ToDateTime("15/09/2013 12:00:00");

当然,在欧盟系统上,这会起作用,但在美国人(甚至其他人)上,这会产生错误,因为没有第 15 个月......

这甚至在我的可访问类的构造函数之前就被触发了,这就是无法处理错误的原因。

愚蠢的错误,但证明有时错误看起来很复杂,其实很简单。

于 2013-08-23T08:46:12.100 回答