COM class factory error - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:47:14Zhttp://stackoverflow.com/feeds/question/218405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218405/com-class-factory-error0COM class factory errorJoe Morgan2008-10-20T13:24:27Z2008-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#2184231Answer by ChaosSpeeder for COM class factory errorChaosSpeeder2008-10-20T13:29:07Z2008-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#2186920Answer by HS for COM class factory errorHS2008-10-20T14:45:56Z2008-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#3048401Answer by gyrolf for COM class factory errorgyrolf2008-11-20T10:08:55Z2008-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>