我有一个需要使用VB6 Com dll的ASP.NET Web项目。我有一个控制器,在那里我从com dll创建类的对象,并在我的操作中使用该对象。当我从大约2000-2500个线程调用该操作时,似乎一切都正常,但是当我从更多的线程运行它时,我在创建com对象实例时得到了这个错误:
Creating an instance of the COM component with CLSID from the IClassFactory failed due to the following error: 800401f7 (or 800a01b8).
我发现com组件在STA线程模式下运行,而AS