COM - 访问被拒绝

时间:2013-02-13 09:06:46

标签: c# com dcom opc

我现在已经被困在这个问题上大约5天了。

基本上我正在尝试从远程PC连接到OPC服务器(Kepware)。如果我在安装了Kepware的服务器上运行它(在此示例中为192.168.102.104),我编写的代码就可以工作。

但是,如果我从远程PC运行它,我会收到以下错误。

System.UnauthorizedAccesException: Access is denied 
(Error from HRESULT: 0x080070005 E_ACCESSIFDENIED))

我按照以下说明设置了服务器: http://www.kepware.com/Support_Center/SupportDocuments/Remote%20OPC%20DA%20-%20Quick%20Start%20Guide%20(DCOM).pdf

PC不在域中,两台PC都包含具有相同密码的用户Administrator。

有人可以告诉我问题可能是PC设置还是我的代码

CODE ::

class Program
{
    static void Main(string[] args)
    {
        try
        {
            Unmanaged.CoInitializeSecurity(IntPtr.Zero, -1, IntPtr.Zero, IntPtr.Zero,
                                           Unmanaged.RpcAuthnLevel.Connect,
                                           Unmanaged.RpcImpLevel.Anonymous, IntPtr.Zero,
                                           Unmanaged.EoAuthnCap.None, IntPtr.Zero);

            using (new Impersonation("Administrator", "TEST", "Password"))
            {
                OPCServer opcServer = new OPCServer();
                opcServer.Connect("Kepware.KEPServerEx.V5", "192.168.102.104");
                Console.WriteLine(opcServer.ServerName);
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine("Connection error:::\n\n{0}\n\n",ex);
            Console.ReadLine();
        }
        Console.ReadLine();
    }
}

Unmanaged Class ::

partial class Unmanaged
{
    [DllImport("ole32.dll")]
    public static extern int CoInitializeSecurity(IntPtr pVoid, int
        cAuthSvc, IntPtr asAuthSvc, IntPtr pReserved1, RpcAuthnLevel level,
        RpcImpLevel impers, IntPtr pAuthList, EoAuthnCap dwCapabilities, IntPtr
        pReserved3);

    public enum RpcAuthnLevel
    {
        Default = 0,
        None = 1,
        Connect = 2,
        Call = 3,
        Pkt = 4,
        PktIntegrity = 5,
        PktPrivacy = 6
    }

    public enum RpcImpLevel
    {
        Default = 0,
        Anonymous = 1,
        Identify = 2,
        Impersonate = 3,
        Delegate = 4
    }

    public enum EoAuthnCap
    {
        None = 0x00,
        MutualAuth = 0x01,
        StaticCloaking = 0x20,
        DynamicCloaking = 0x40,
        AnyAuthority = 0x80,
        MakeFullSIC = 0x100,
        Default = 0x800,
        SecureRefs = 0x02,
        AccessControl = 0x04,
        AppID = 0x08,
        Dynamic = 0x10,
        RequireFullSIC = 0x200,
        AutoImpersonate = 0x400,
        NoCustomMarshal = 0x2000,
        DisableAAA = 0x1000
    }
}

模拟类只是模仿本地用户Administrator。

当我在使用Kepware的服务器上运行时,我得到输出 - Kepware.KepServerEx.V5 当我在客户端PC上运行它时出现上述错误

非常感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:3)

找到问题的根源。

为什么我一发布的时候就一直都是这样的?

问题在于如何设置服务器。我不会在这里向您介绍所有细节,但这与DCOM设置中的身份(在DCONcnfg中)设置为错误的用户有关。

显然我忽略了服务器设置指令的那一点。

抱歉浪费任何人的时间。