How to load GhostScript (gs64dll.dll) 64 bit dll in ASP.net 2010 application (It gives error with error code: HRESULT: 0x8007000B)
To do this I have created c# wrapper and put gs64dll.dll in bin folder still it gives the开发者_高级运维 same error.
Googling the HRESULT show that this is most likely a 64bit vs 32bit issue. Try using gs32dll.dll
or the 32-bit version instead.
The other option is to change your application pool for the website to use 64bit. (I believe 32-bit is default).
I just had exactly the same problem. What I ended up doing is using gs32dll.dll
and selecting in Config. Manager platform x86. That solved it.
精彩评论