当尝试调试VB DLL使用Visual Studio 6.0时,我收到以下错误.你能告诉我需要做些什么吗? System Error H80004015 (-2147467243). The class is configured to run as a security id different from the caller 我曾经也有过一
我曾经也有过一样的问题.System Error &H80004015 (-2147467243).
The class is configured to run as a
security id different from the caller
创建了一些ActiveX DLL并将二进制文件放入COM应用程序中,该应用程序在特定帐户(不是我的)下运行.然后我使用Server.CreateObject()在ASP脚本页面中使用这些组件.
如果我将源代码加载到VB中进行调试并尝试运行它(“Start with Full Compile”),我收到此错误消息.
原因是COM应用程序中注册的帐户与我尝试运行的帐户不同.
此特定情况的解决方案是关闭COM应用程序并删除组件.完成调试后,编译DLL集并将它们放回COM应用程序.
希望有人得到这方面的帮助:-)