0

我需要将库本机 x86 C/C++ *.dll 连接到我的计算机(IIS7.5)中本地托管的服务 WCF C# 4.0。我通过http请求(方法[WebGet])调用服务方法。我得到错误:

http://s1.ipicture.ru/uploads/20120509/H8TVURsE.jpg

用户代码未处理 DllNotFoundException

无法加载 DLL Li.dll:访问被拒绝(从 HRESULT 中排除:0x80070005 (E_ACCESSDENIED))

你能告诉我可能是什么问题吗?


在控制台应用程序 C# 中测试的库 Li.dll 的效率 - 成功运行。

Windows 7 x86 .NET 4.0 VS 2010 IIS7.5

结构解决方案服务WCF:

http://s1.ipicture.ru/uploads/20120430/vBXivN71.jpg

源代码

本机 C/C++ x86 Li.dll:

extern "C" {
    __declspec(dllexport) int __cdecl SimulateGameDLL (int a, int b); 
}

李.cpp

#include "Li.h"
extern int __cdecl SimulateGameDLL (int num_games, int rand_in) {
   return 121; 
}

C#

WcfServiceLibrary1.IService1

[ServiceContract] public interface IService1{
    [OperationContract][WebGet] string GetData();
}

WcfServiceLibrary1.Service1

public class Service1 : IService1{

public string GetData(){

    ClassLibrary1.Class1 cl = new ClassLibrary1.Class1();
    var rt = cl.M(); 
    return string.Format("Value = : {0}", rt);  
}
}

ClassLibrary1.Class1

public class Class1{

    [DllImport("Li.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.Cdecl)]
    public static extern int SimulateGameDLL(int a, int b);

    public int M() {

        var r = SimulateGameDLL(10, 20);            
        return r;
    }
}

强文本

4

1 回答 1

1

可能是您应该授予用户NETWORK SERVICE访问 dll 文件的权限。

于 2012-05-08T09:05:30.140 回答