|
|
8000XXXX Errors ASP.NET 2.0 Classic ASP 1.0 COM / ActiveX Components Forms General Topics Date/Time Routines Email Scripts & Info Files/Directories & FSO Databases General Concepts Search Engine Optimization (SEO)Search | ASP FAQ Tutorials :: Classic ASP 1.0 :: COM / ActiveX Components :: Why do I get 8000401A errors? Why do I get 8000401A errors?When running a component in an MTS or COM+ application, you may have come across one of the following errors:
or
The problem is that the 'Identity' set up for the application lacks sufficient privileges. This could be for several reasons, but before we get into those, let's check out where this identity is configured. Open Control Panel, Administrative Tools, and double-click Component Services. Expand COM+ Applications, right-click the application in question, hit Properties, and switch to the Identity tab. You should see a dialog similar to the following: ![]() One possible reason is that, when setting the identity for your application, you simply chose a user that doesn't have access to the DLL, or to a file or system call the DLL touches. Another potential cause is that someone changed the Windows password for that user (since the application won't automatically adjust for that change), or it was never entered correctly in the first place. If this identity is set to the 'Interactive User', then the above error might occur when the user currently logged in to the machine is a peon, or when nobody is logged in at all. This is the primary reason why this error is never detected in development... the user developing the COM+ application, and in complete control of the machine, is also the user logged in and running as the interactive user. You should make sure to use a local user account with sufficient privileges, if that's what your DLL requires. See KB #276407 for more information. Related Articles Can I code ISAPI filters / extensions with Visual Basic? DLL: How do I avoid 'Permission Denied' when re-compiling? How do I detect browsers without components? How do I determine if a COM object is installed? How do I determine if a VBScript-based object exists? How do I generate PDF files from ASP? How do I generate RTF documents from ASP? How do I handle MD5 from ASP? How do I pass server-side values to a client-side ActiveX control? Should I close my objects and/or set them to nothing? Should I store objects in session/application scope? Should I use CreateObject or Server.CreateObject? When does ASP release COM objects? Where can I get a shopping cart for my web site? Where can I get an updated version of browscap.ini? Why do I get 'Server.CreateObject Access Error'? Why do I get 80040111 errors? Why do I get 80040112 / 8007045A errors? Why do I get 800401F3 / 800A01AD errors? Why do I get 80040460 errors? Why do I get 80040514 errors? Why do I get 8007000E errors? Why do I get 8007007E / 8007007F errors? Why do I get 80072EE2 errors? Why do I get 80072EE5 errors? Why do I get 800A0030 errors? Why do I get 800A005B errors? Why do I get 800A9C68 errors? Why do I get 800C0007 errors? Why does Browscap give me 'unknown' or tell me IE is Netscape? |