Indrajeet
Indrajeet

Reputation: 1

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.

Upvotes: 0

Views: 2073

Answers (2)

bortkevb
bortkevb

Reputation: 11

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.

Upvotes: 1

Erik Philips
Erik Philips

Reputation: 54638

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).

Upvotes: 1

Related Questions