COM class factory error - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:47:14Z http://stackoverflow.com/feeds/question/218405 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218405/com-class-factory-error 0 COM class factory error Joe Morgan 2008-10-20T13:24:27Z 2008-11-20T10:54:39Z <p>I've been testing an application using my machine as a server, and everything's going fine with it, but when I try to set it up to run on the test server, I get this error:</p> <blockquote> <p>Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80040154.</p> </blockquote> <p>Any ideas?</p> <p>Thanks</p> http://stackoverflow.com/questions/218405/com-class-factory-error/218423#218423 1 Answer by ChaosSpeeder for COM class factory error ChaosSpeeder 2008-10-20T13:29:07Z 2008-10-20T13:29:07Z <p>First: Please check on your test server the registration of your com objects.</p> <pre><code>HKEY_CLASSES_ROOT\CLSID\{xxxx} </code></pre> <p>Check, if your dll or exe file is on the correct location on the hard drive.</p> <p>Second: This link may help: <a href="http://support.software602.com/kb/view.aspx?articleID=987" rel="nofollow">http://support.software602.com/kb/view.aspx?articleID=987</a></p> http://stackoverflow.com/questions/218405/com-class-factory-error/218692#218692 0 Answer by HS for COM class factory error HS 2008-10-20T14:45:56Z 2008-10-20T14:45:56Z <p>The error code translates to "class not registered".</p> <p>Registering is usually done with "regsvr32 " when it is a DLL or via " /RegServer".</p> <p>To avoid the described error message, please register on client and server.</p> http://stackoverflow.com/questions/218405/com-class-factory-error/304840#304840 1 Answer by gyrolf for COM class factory error gyrolf 2008-11-20T10:08:55Z 2008-11-20T10:54:39Z <p>We encountered this error sometimes with MSXML 4, especially when doing installation tests.</p> <p><strong>Resolution:</strong> deinstall and reinstall MSXML.</p>