'80040154 Class not registered' with interop from ASP.NET

前端 未结 2 1204
陌清茗
陌清茗 2020-12-19 01:46

I\'m receiving the following error on a Windows XP Pro SP2 x64 machine running IIS6:

System.Runtime.InteropServices.COMException: 
Retrieving the COM class f         


        
2条回答
  •  北荒
    北荒 (楼主)
    2020-12-19 02:19

    Make sure that your application pool is either 32 bit (or supports 32 bit apps) or your COM control supports 64 bit apps. Most likely, your native COM library is 32bit and your pool runs a 64 bit worker by default, which is unable to load 32bit COM dll.

提交回复
热议问题