COM class factory error

后端 未结 3 1775
终归单人心
终归单人心 2021-01-25 21:41

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:

相关标签:
3条回答
  • 2021-01-25 22:03

    The error code translates to "class not registered".

    Registering is usually done with "regsvr32 " when it is a DLL or via " /RegServer".

    To avoid the described error message, please register on client and server.

    0 讨论(0)
  • 2021-01-25 22:10

    We encountered this error sometimes with MSXML 4, especially when doing installation tests.

    Resolution: deinstall and reinstall MSXML.

    0 讨论(0)
  • 2021-01-25 22:12

    First: Please check on your test server the registration of your com objects.

    HKEY_CLASSES_ROOT\CLSID\{xxxx}
    

    Check, if your dll or exe file is on the correct location on the hard drive.

    Second: This link may help: http://support.software602.com/kb/view.aspx?articleID=987

    0 讨论(0)
提交回复
热议问题