Native Assembly Binding fails for ASP.NET solution

前端 未结 1 1802
花落未央
花落未央 2021-02-19 22:54

NOTE: This main purpose of the question to UNDERSTAND/EXPLAIN the assembly binding behavior of the CLR. The solution should be evident once the

相关标签:
1条回答
  • 2021-02-19 23:08

    As far as I can work out and with a fair amount of supposition...

    The .NET assemblies in the /bin folder are automatically loaded by ASP.NET when the website starts, but any native win32 DLLs aren't loaded.

    The DLLImport is failing because the DllImport is done relative to the w3wp.exe process NOT relative to the website project. An AppPool can be shared between many websites so your website's /bin folder can't be the CurrentDirectory for the w3wp.exe process even supposing there aren't security issues with doing that.

    So to find the DLL, IIS is looking first in the folder where 'w3wp.exe' is located, and then checking the Windows System folders.

    In theory, you should be able to use LoadLibrary() and GetProcAddress() to load the DLLs from a specific folder.

    Incidentally, If you're using DllImport() in a class defined within the website project you may need to change the default compilation mode for ASP.NET to 'safe'. To allow unsafe code to be used you can update your web.config file:

    <system.codedom>
        <compilers>
           <compiler ... compilerOptions="/unsafe" >
        </compilers>
    </system.codedom>
    
    0 讨论(0)
提交回复
热议问题