使用 vbs 创建 Chilkat XML 对象时出现 800A01AD 错误

发布于 2024-12-19 06:36:17 字数 586 浏览 1 评论 0原文

我的 VB 脚本在使用 Windows Server 2003 时出现错误:

代码“800A01AD”
消息“ActiveX 组件无法创建对象:'Chilkat.Rss'”

以下行会导致错误:

Set rss = CreateObject("Chilkat.Rss")

但在使用 Windows Vista 时工作正常。

在windows server 2003中如何解决这个问题?

简单代码: http://www.example-code.com/vbscript/rss_read_feed.asp< /a>
Chilkat XML:
http://www.chilkatsoft.com/XML-ActiveX.asp

My VB script got an error when using Windows Server 2003:

Code "800A01AD"
Message "ActiveX component can't create object: 'Chilkat.Rss'"

The following line causes the error:

Set rss = CreateObject("Chilkat.Rss")

but it works fine when using Windows Vista.

How can I solve this problem in windows server 2003?

Simple Code: http://www.example-code.com/vbscript/rss_read_feed.asp
Chilkat XML: http://www.chilkatsoft.com/XML-ActiveX.asp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愚人国度 2024-12-26 06:36:17

ActiveX 组件无法创建对象:'X' 错误意味着您尝试运行代码的计算机上尚未安装该库。

您需要在 Windows Server 2003 计算机上安装包含 Chillkat.Rss 程序集的 dll(或 msi/exe,如果有的话)。

更多信息

The ActiveX component can't create object: 'X' error means that the library has not been installed on the machine you are attempting to run your code on.

You will need to install the dll (or msi/exe if it has one) which contains the Chillkat.Rss assembly on your windows server 2003 machine.

More information here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文